/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2ecc71;
    margin: 5px 0;
    border-radius: 2px;
}

.logo h1 {
    font-size: 20px;
    color: #0066cc;
    font-weight: 600;
    line-height: 1.2;
}

.logo-icon {
    color: #2ecc71;
    font-size: 24px;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 40px;
    line-height: 1.2;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-box input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 16px;
    outline: none;
}

.btn-search {
    background-color: #5a6c7d;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.btn-search:hover {
    background-color: #4a5c6d;
}

/* Illustration Section */
.illustration-section {
    padding: 60px 20px;
    background: white;
}

.city-illustration {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.city-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.features {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-title {
    font-size: 36px;
    color: #2ecc71;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    max-width: 100px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.feature-title {
    font-size: 22px;
    color: #2ecc71;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    color: #666;
    line-height: 1.8;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(rgba(46, 204, 113, 0.9), rgba(39, 174, 96, 0.9)), url('../images/warehouse-logistics.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.platform-section {
    padding: 80px 20px;
    background: #2ecc71;
    color: white;
}

.platform-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.platform-illustration {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.platform-text {
    flex: 1;
    min-width: 300px;
}

.platform-section .section-title {
    color: white;
    text-align: left;
}

.platform-section .section-description {
    color: white;
    text-align: left;
    margin-bottom: 0;
}

.help-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.help-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.help-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #2ecc71;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.help-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.help-icon img {
    max-width: 60px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.help-title {
    font-size: 20px;
    color: #2ecc71;
    margin-bottom: 15px;
    font-weight: 600;
}

.help-text {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.help-list {
    list-style: none;
    padding-left: 0;
}

.help-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.help-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-text {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #27ae60;
    text-decoration: underline;
}

.cookie-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 30px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-modal.show {
    display: block;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.cookie-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.cookie-link {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-scope {
    font-size: 14px;
    color: #777;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #2ecc71;
    color: white;
}

.btn-accept:hover {
    background-color: #27ae60;
}

.btn-configure {
    background-color: #2ecc71;
    color: white;
}

.btn-configure:hover {
    background-color: #27ae60;
}

.btn-save {
    background-color: #2ecc71;
    color: white;
}

.btn-save:hover {
    background-color: #27ae60;
}

.btn-deny {
    background-color: #2ecc71;
    color: white;
}

.btn-deny:hover {
    background-color: #27ae60;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.close-modal:hover {
    color: #333;
}

.cookie-settings-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.tab {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab.active {
    color: #2ecc71;
    border-bottom-color: #2ecc71;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.tab-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.tab-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.tab-content ul li {
    margin-bottom: 8px;
    color: #555;
}

.cookie-detail {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    border-left: 3px solid #2ecc71;
}

.cookie-detail p {
    margin-bottom: 8px;
    font-size: 14px;
}

.cookie-detail p strong {
    color: #333;
    font-size: 15px;
}

.cookie-detail p em {
    color: #666;
    font-weight: 600;
}

.cookie-option {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.cookie-option h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.cookie-option p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2ecc71;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.switch.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-settings-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.tracking-result-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1003;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tracking-result-modal.show {
    display: flex;
}

.tracking-result-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    text-align: center;
}

.tracking-result-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.tracking-result-icon img {
    max-width: 100px;
    height: auto;
}

.tracking-result-content h2 {
    font-size: 28px;
    color: #2ecc71;
    margin-bottom: 20px;
}

.tracking-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.tracking-code-display {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.tracking-code-display span {
    color: #2ecc71;
    font-weight: 600;
    font-size: 18px;
}

.tracking-message {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #2ecc71;
}

.tracking-message p {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.tracking-message p:last-child {
    margin-bottom: 0;
}

.status-transport {
    font-size: 18px;
    color: #2ecc71 !important;
    font-weight: 600;
}

.tracking-help {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #ffc107;
}

.tracking-help p {
    margin-bottom: 8px;
    color: #555;
}

.tracking-help p:last-child {
    margin-bottom: 0;
}

.contact-link {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.btn-tracking-close {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-tracking-close:hover {
    background-color: #27ae60;
}

.scam-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.scam-modal.show {
    display: flex;
}

.scam-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.scam-image {
    text-align: center;
    margin-bottom: 20px;
}

.scam-image img {
    max-width: 150px;
    height: auto;
}

.scam-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.scam-section {
    margin-bottom: 25px;
}

.scam-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.scam-list, .scam-list-ok {
    list-style: none;
    padding: 0;
}

.scam-list li, .scam-list-ok li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.icon-no {
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

.icon-ok {
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 18px;
}

.scam-footer {
    text-align: center;
    color: #555;
    margin: 20px 0;
    font-weight: 500;
}

.scam-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-scam {
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline {
    background: white;
    border: 2px solid #2ecc71;
    color: #2ecc71;
}

.btn-outline:hover {
    background: #2ecc71;
    color: white;
}

.btn-primary {
    background-color: #2ecc71;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #27ae60;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .platform-content {
        flex-direction: column;
    }

    .help-carousel {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-buttons, .scam-buttons, .cookie-settings-buttons {
        flex-direction: column;
    }

    .btn-cookie, .btn-scam {
        width: 100%;
    }
}

