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

:root {
    --primary-color: #2A9D8F;
    --secondary-color: #1D4E89;
    --accent-color: #FFC700;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #2A9D8F 0%, #1D7369 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.leaf-pattern {
    position: absolute;
    width: 500px;
    height: 500px;
    opacity: 0.1;
}

.leaf-pattern-1 {
    top: -100px;
    left: -100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 20 Q60 60 60 100 Q60 140 100 180 Q100 140 100 100 Q100 60 100 20Z' fill='white'/%3E%3Cpath d='M100 20 Q140 60 140 100 Q140 140 100 180 Q100 140 100 100 Q100 60 100 20Z' fill='white'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: float 20s infinite ease-in-out;
}

.leaf-pattern-2 {
    bottom: -150px;
    right: -150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 20 Q60 60 60 100 Q60 140 100 180 Q100 140 100 100 Q100 60 100 20Z' fill='white'/%3E%3Cpath d='M100 20 Q140 60 140 100 Q140 140 100 180 Q100 140 100 100 Q100 60 100 20Z' fill='white'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.logo-wrapper {
    margin-bottom: 40px;
}

.main-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.badge-text {
    font-size: 0.875rem;
    text-align: center;
}

/* Form Card */
.hero-form {
    position: relative;
}

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition);
    background: var(--white);
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
    background: #248277;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(42, 157, 143, 0.3);
}

.btn-primary svg {
    transition: var(--transition);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: -10px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.875rem;
    z-index: 1;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

.text-highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight-number {
    color: var(--accent-color);
}

/* Logo Opção Hero */
.logo-opcao {
    margin-bottom: 30px;
}

.logo-opcao img {
    max-width: 200px;
    height: auto;
}

/* About Opção */
.about-opcao {
    background: var(--secondary-color);
    color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-logo-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.opcao-logo-white {
    max-width: 250px;
    height: auto;
}

.about-stats {
    display: grid;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Location */
.location {
    background: var(--bg-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.location-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.location-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.location-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.benefit-item svg {
    flex-shrink: 0;
}

/* Proximity */
.proximity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.proximity-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.proximity-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(42, 157, 143, 0.1);
}

.proximity-icon {
    width: 80px;
    height: 80px;
    background: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.proximity-card:hover .proximity-icon {
    background: var(--primary-color);
}

.proximity-card:hover .proximity-icon svg path {
    stroke: var(--white);
}

.proximity-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.proximity-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Amenities */
.amenities {
    background: var(--bg-light);
}

.amenities-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.amenity-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 300px;
    cursor: pointer;
}

.amenity-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.amenity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 157, 143, 0.95) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.amenity-card:hover .amenity-overlay {
    opacity: 1;
}

.amenity-card:hover .amenity-image img {
    transform: scale(1.1);
}

.amenity-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.amenity-overlay p {
    font-size: 1rem;
    opacity: 0.95;
}

/* Floorplans */
.floorplans {
    background: var(--white);
}

.floorplan-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.floorplan-tab {
    display: none;
}

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

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

.floorplan-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.floorplan-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(42, 157, 143, 0.1);
}

.floorplan-card.highlight {
    background: var(--primary-color);
    color: var(--white);
}

.floorplan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.floorplan-size {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.floorplan-card.highlight .floorplan-size {
    color: var(--accent-color);
}

.floorplan-features {
    list-style: none;
    text-align: left;
}

.floorplan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.floorplan-card.highlight .floorplan-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.floorplan-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

.floorplan-card.highlight .floorplan-features li::before {
    color: var(--accent-color);
}

.cta-wrapper {
    text-align: center;
}

/* Differentials */
.differentials {
    background: var(--white);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.differential-item {
    text-align: center;
}

.differential-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.differential-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.differential-item p {
    color: var(--text-light);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.visit-info {
    opacity: 0.9;
    font-size: 1rem;
}

.visit-info p {
    margin: 5px 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

.footer-disclaimer {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.875rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container,
    .about-content,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .main-logo {
        max-width: 250px;
    }

    .hero-subtitle,
    .hero-badges {
        display: none;
    }

    .form-card {
        padding: 30px 25px;
    }

    .amenities-gallery {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    section {
        padding: 60px 0;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* Loading Animation */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Catálogo de Empreendimentos */
.empreendimentos-catalogo {
    background: var(--bg-light);
    padding: 100px 0;
}

.empreendimento-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.empreendimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.emp-header {
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.garden-sul .emp-header {
    background: #12857b;
}

.jardim-sul .emp-header {
    background: #53c3b0;
}

.emp-logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
}

.emp-address {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
}

.emp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px;
}

.emp-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-thumbs img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-thumbs img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.emp-info h3.emp-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.emp-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.emp-features,
.emp-plantas,
.emp-lazer {
    margin-bottom: 35px;
}

.emp-features h4,
.emp-plantas h4,
.emp-lazer h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.emp-features ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.emp-features li {
    font-size: 1rem;
    color: var(--text-dark);
}

.plantas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
}

.planta-item {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.planta-item:hover {
    border-color: var(--primary-color);
}

.planta-item.highlight {
    background: var(--primary-color);
    color: var(--white);
}

.planta-size {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.planta-type {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
}

.lazer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lazer-tags span {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    margin-top: 20px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary svg {
    transition: var(--transition);
}

.btn-secondary:hover svg {
    transform: translateX(5px);
}

.separator {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.separator::before {
    content: '';
    width: 100%;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Location Updates */
.location-content .section-text.center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

/* Final CTA Updates */
.final-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Responsivo Catálogo */
@media (max-width: 968px) {
    .emp-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .emp-images {
        position: relative;
        top: 0;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }

    .plantas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .empreendimento-card {
        margin-bottom: 40px;
    }

    .separator {
        height: 40px;
    }
}

@media (max-width: 640px) {
    .emp-header {
        padding: 30px 20px;
    }

    .emp-logo {
        max-width: 200px;
    }

    .plantas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }

    .lazer-tags {
        justify-content: center;
    }

    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .logo-opcao img {
        max-width: 150px;
    }

    .opcao-logo-white {
        max-width: 180px;
    }
}
