body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
}

.logo-container {
    background-color: #FFD700; /* Dourado */
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 180px;
    height: auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #4B0082, #6A0DAD);
    color: #fff;
    padding: 80px 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
    z-index: 0;
}

.main-title {
    font-size: 4em;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.brand-name {
    display: block;
    font-size: 1.2em;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFD700;
}

.tagline {
    display: block;
    font-size: 0.5em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.hero-btn {
    margin-top: 40px;
    padding: 15px 35px;
    font-size: 1.2em;
    border-radius: 50px;
    background-color: #FFD700;
    color: #4B0082;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.hero-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Seções Gerais */
section {
    padding: 60px 0;
    text-align: center;
}

h2 {
    font-size: 2.8em;
    color: #4B0082;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-description {
    font-size: 1.2em;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* Our Stores Section */
.our-stores-section {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    padding: 60px 20px;
}

.store-card-large {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.store-image-gallery {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

.store-main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.store-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover, .thumbnail.active {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.5);
}

.store-details {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

.store-details h3 {
    font-size: 2.5em;
    color: #4B0082;
    margin-bottom: 15px;
}

.store-details p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
}

.store-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    background-color: #FFD700;
    color: #4B0082;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.95em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-actions-large {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: #4B0082;
    color: #fff;
    border: 2px solid #4B0082;
}

.btn-primary:hover {
    background-color: #3a0066;
    border-color: #3a0066;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #fff;
    color: #4B0082;
    border: 2px solid #4B0082;
}

.btn-secondary:hover {
    background-color: #f0f2f5;
    transform: translateY(-2px);
}

/* Why Choose Anelli Section */
.why-choose-anelli-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 1.8em;
    color: #4B0082;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 1em;
    color: #666;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 80px 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.future-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.plan-item:hover {
    transform: translateY(-5px);
}

.plan-item i {
    font-size: 3.5em;
    color: #4B0082;
    margin-bottom: 15px;
}

.plan-item h3 {
    font-size: 1.8em;
    color: #4B0082;
    margin-bottom: 10px;
}

.plan-item p {
    font-size: 1em;
    color: #666;
}

/* Footer */
.footer {
    background-color: #4B0082;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px 15px 0 0;
}

.social-links {
    margin-bottom: 25px;
}

.social-link {
    color: #fff;
    font-size: 2em;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #FFD700;
}

.copyright {
    font-size: 0.9em;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Pop-up */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2em;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #FFD700;
}

.popup-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.popup-text {
    font-size: 1.8em;
    color: #4B0082;
    margin-bottom: 25px;
    font-weight: 600;
}

.popup-text .highlight {
    color: #FFD700;
    font-weight: 700;
}

.popup-btn {
    background-color: #4B0082;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.popup-btn:hover {
    background-color: #3a0066;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3em;
    }

    .brand-name {
        font-size: 1em;
    }

    .tagline {
        font-size: 0.4em;
    }

    h2 {
        font-size: 2em;
    }

    .section-description {
        font-size: 1em;
    }

    .store-card-large {
        flex-direction: column;
    }

    .store-details {
        text-align: center;
    }

    .store-features-list {
        justify-content: center;
    }

    .store-actions-large {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 80%;
    }

    .values-grid, .future-plans-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        max-width: 150px;
    }

    .popup-text {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5em;
    }

    .brand-name {
        font-size: 0.9em;
    }

    .tagline {
        font-size: 0.35em;
    }

    h2 {
        font-size: 1.8em;
    }

    .hero-btn {
        font-size: 1em;
        padding: 12px 25px;
    }

    .store-details h3 {
        font-size: 2em;
    }

    .feature-item {
        font-size: 0.8em;
        padding: 6px 12px;
    }

    .social-link {
        font-size: 1.5em;
    }

    .popup-text {
        font-size: 1.2em;
    }
}

