/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Montserrat', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #000000;
}

/* Variáveis CSS */
:root {
    --primary: #1e293b;
    --primary-hover: #334155;
    --secondary: #f1f5f9;
    --muted: #64748b;
    --border: #e2e8f0;
    --border-nav: rgba(255, 255, 255, 0.2);

    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --border-radius: 8px;
    --transition: all 0.3s ease;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    --primary-black: #1f1f1f;
    --gold: #FFD700;
    --dark-gold: #b19702;
    --dark-gray: #4d4d4d;
    --light-gray: #dfdede;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-nav);
    background-image: linear-gradient(to right, var(--gold) -600%, rgba(255, 255, 255, 0.1) 85%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4.5rem;
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-brand img {
    width: 215px;
    height: 30px;
}

.nav-menu {
    display: flex;
    gap: 1.7em;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--light-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--light-gray);
    transition: var(--transition);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #000000 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero/hero-image.jpg') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background: var(--gold);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Sections */
.section {
    padding: var(--section-padding);
}

.section-alt {
    background: var(--secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-items: center;
}

/* Cards */
.card {
    width: 100%;
    max-width: 24rem;
    height: 28rem;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    color: white;
    box-shadow: 0 10px 30px 5px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--dark-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-image {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
    transition: opacity 0.2s ease-out;
}

.card-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    margin: 0;
    transition: all 0.3s ease-out;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1.2;
    z-index: 3;
    height: auto;
}

.card-description {
    position: absolute;
    opacity: 0;
    left: 30px;
    right: 30px;
    bottom: 5rem;
    line-height: 1.5;
    transition: opacity 0.3s ease-out;
    z-index: 3;
    height: auto;
}

.card-list {
    position: absolute;
    opacity: 0;
    left: 30px;
    right: 30px;
    bottom: 5rem;
    transition: opacity 0.3s ease-out;
    line-height: 1.4;
    padding-left: 0;
    list-style-position: inside;
    z-index: 3;
    height: auto;
}

.card-list li {
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.card-link {
    position: absolute;
    opacity: 0;
    left: 30px;
    right: 30px;
    bottom: 5rem;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease-out;
    z-index: 3;
    height: auto;
}

/* Card Hover Effects */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px 10px rgba(0, 0, 0, 0.3);
}

.card:hover .card-title-investimentos {
    bottom: 20rem;
    transition: all 0.3s ease-out;
}

.card:hover .card-title-cambio,
.card:hover .card-title-cartao {
    bottom: 13rem;
    transition: all 0.3s ease-out;
}

.card:hover .card-title-consorcios {
    bottom: 16rem;
    transition: all 0.3s ease-out;
}

.card:hover .card-title-credito {
    bottom: 12rem;
    transition: all 0.3s ease-out;
}

.card:hover .card-title-seguros {
    bottom: 20rem;
    transition: all 0.3s ease-out;
}

.card:hover .card-title-contadigital {
    bottom: 16rem;
    transition: all 0.3s ease-out;
}

.card:hover .card-title-contapj {
    bottom: 21rem;
    transition: all 0.3s ease-out;
}

.card:hover .card-title-contaglobal {
    bottom: 15rem;
    transition: all 0.3s ease-out;
}

.card:hover .card-description,
.card:hover .card-list {
    opacity: 1;
    transition: opacity 0.5s 0.1s ease-in, bottom 0.3s ease-out;
}

.card:hover .card-link {
    opacity: 1;
    transition: opacity 0.5s 0.1s ease-in;
}

.card:hover .card-image {
    transition: filter 0.3s ease-in;
    filter: brightness(0.5);
}

.material-symbols-outlined {
    vertical-align: middle;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    margin-top: 1rem;
}

.features-list li {
    color: var(--muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.placeholder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
    filter: brightness(0.95);
}

/* Selo de Governança e Integridade */
.selo-gov-int-section {
    background-image: linear-gradient(to top, var(--gold) -600%, rgba(255, 255, 255, 0.1) 85%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.selo-gov-int-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.selo-gov-int-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.selo-gov-int-content img {
    width: 39rem;
    max-width: 735px;
    height: auto;
    border-radius: 0.5rem;
    display: block;
    margin: 0 auto;
}

/* CTA */
.cta-section {
    background: var(--secondary);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-content h2 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact */
.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-header p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-grid {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--muted);
}

/* Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Checkbox custom */
.form-group.form-consent {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .85rem;
    line-height: 1.3;
    margin-top: 1rem;
}

.form-group.form-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border: 2px solid var(--gold);
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    transition: border-color .25s, box-shadow .25s, background .35s;
}

.form-group.form-consent input[type="checkbox"]::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 12px;
    border: 2px solid #000;
    border-top: 0;
    border-left: 0;
    transform: translate(-50%, -55%) rotate(45deg) scale(0);
    transform-origin: center;
    transition: transform .22s ease;
    pointer-events: none;
    box-sizing: border-box;
}

.form-group.form-consent input[type="checkbox"]:hover {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.25);
}

.form-group.form-consent input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.28);
}

.form-group.form-consent input[type="checkbox"]:checked {
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.18);
}

.form-group.form-consent input[type="checkbox"]:checked::after {
    transform: translate(-50%, -55%) rotate(45deg) scale(1);
}

.form-group.form-consent label {
    cursor: pointer;
    font-weight: 500;
    color: var(--primary);
    user-select: none;
}

/* Escritório */
.escritorio {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.section-escritorio {
    background: linear-gradient(to right, rgb(255, 255, 255) 35%, rgba(0, 0, 0, 0.05)), url('../images/escritorio/image_escritorio.png');
    background-size: cover;
    background-position: center;
}

.escritorio-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.escritorio-header p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    width: 22rem;
}

.footer-brand img {
    width: 215px;
    height: 30px;
}

.footer-brand p {
    padding-top: 1rem;
    text-align: justify;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-column-social a {
    display: contents;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    gap: 1rem;
    transition: var(--transition);
}

.footer-column-social i {
    padding-right: 1rem;
}

.footer-column a:hover {
    color: white;
}

.footer-column i {
    font-size: 35px;
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: justify;
    opacity: 0.8;
    font-size: xx-small;
}

/* Modal */
.modal {
    display: block;
    width: 700px;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(100px);
    z-index: 1000005;
    box-shadow: 0.063em 0.75em 1.563em rgb(0 0 0 / 78%);
    border-radius: 1rem;
    background: radial-gradient(ellipse at right top, var(--dark-gold) 0%, #151419 47%, #151419 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) translateY(0);
}

.modal-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.8em 0.8em 0em 1.5em;
}

.modal-header .close {
    color: var(--primary-black);
    width: 1.5rem;
    cursor: pointer;
}

.modal-body {
    width: 100%;
    padding: 0.7em 2em 0.5em 2em;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 2em;
}

.modal-body .icon {
    width: 3rem;
    color: var(--clr-green);
}

.modal-body>div {
    flex: 1;
}

.modal-body li {
    color: #cccccc;
    font-size: 0.9rem;
    letter-spacing: 0.031rem;
    margin-bottom: 0.5em;
}

.modal-body h2 {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.035em;
    margin-top: 0.625em;
    margin-bottom: 0.5em;
    font-weight: 600;
    text-align: left;
}

.modal-body p {
    text-decoration: none;
    color: #cccccc;
    font-size: 1rem;
    letter-spacing: 0.031rem;
    text-align: left;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-icon {
    width: 65px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

/* Customização de seleção e scrollbar */
::selection {
    background: rgba(255, 215, 0, 0.2);
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FFD700, #FFA500);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFA500, #FFD700);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Header */
    .header .container {
        height: 3.5rem;
    }
    
    .nav-brand img {
        width: 180px;
        height: 25px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        border-top: 1px solid var(--border-nav);
        background-image: linear-gradient(to right, var(--gold) -600%, rgba(255, 255, 255, 0.1) 85%);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero */
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
    }

    /* Sections */
    .section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Grid e Cards */
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .card {
        max-width: 100%;
        height: 30rem;
        margin: 0 auto;
    }

    .card-title {
        font-size: 1.2rem;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .card-description,
    .card-list,
    .card-link {
        left: 20px;
        right: 20px;
        bottom: 4rem;
        font-size: 0.9rem;
    }

    /* Card hover adjustments */
    .card:hover .card-title-investimentos,
    .card:hover .card-title-seguros,
    .card:hover .card-title-contapj {
        bottom: 18rem;
    }

    .card:hover .card-title-cambio,
    .card:hover .card-title-cartao,
    .card:hover .card-title-credito {
        bottom: 11rem;
    }

    .card:hover .card-title-consorcios,
    .card:hover .card-title-contadigital {
        bottom: 14rem;
    }

    .card:hover .card-title-contaglobal {
        bottom: 13rem;
    }

    /* About */
    .about-text h2 {
        font-size: 2rem;
    }

    /* Contact */
    .contact-grid {
        gap: 2rem;
        padding: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        width: 99%;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Selo */
    .selo-gov-int-section {
        padding: 3rem 0;
    }

    .selo-gov-int-content h2 {
        font-size: 2rem;
    }

    .selo-gov-int-content img {
        max-width: 90%;
        width: auto;
    }

    /* CTA */
    .cta-section {
        padding: 3rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    /* Modal */
    .modal {
        width: 90%;
        max-width: 90vw;
        margin: 0 1rem;
    }

    .modal-body {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .modal-body .icon {
        width: 2.5rem;
        align-self: center;
    }

    /* WhatsApp */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-icon {
        width: 55px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    /* Header */
    .header .container {
        height: 3rem;
    }

    .nav-brand img {
        width: 150px;
        height: 21px;
    }

    /* Hero */
    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        max-width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* Grid e Cards */
    .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card {
        height: 28rem;
    }

    .card-title {
        font-size: 1.1rem;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .card-description,
    .card-list,
    .card-link {
        left: 15px;
        right: 15px;
        bottom: 3.5rem;
        font-size: 0.85rem;
    }

    /* Sections */
    .section {
        padding: 2rem 0;
    }

    .section-header h2,
    .about-text h2,
    .cta-content h2,
    .selo-gov-int-content h2 {
        font-size: 1.75rem;
    }

    .section-header p,
    .selo-gov-int-content p,
    .cta-content p {
        font-size: 0.95rem;
    }

    /* Contact */
    .contact-grid {
        padding: 0.5rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.625rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-brand img {
        width: 180px;
        height: 25px;
    }

    .footer-bottom {
        font-size: 0.7rem;
    }

    /* Selo */
    .selo-gov-int-content img {
        max-width: 95%;
    }

    /* Modal */
    .modal {
        width: 95%;
        max-width: 95vw;
    }

    .modal-body {
        padding: 0.75rem 1rem;
    }

    .modal-body h2 {
        font-size: 1.1rem;
    }

    .modal-body p,
    .modal-body li {
        font-size: 0.85rem;
    }

    /* WhatsApp */
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-icon {
        width: 50px;
    }
}

@media (max-width: 360px) {
    .hero-title,
    .section-header h2,
    .about-text h2,
    .cta-content h2,
    .selo-gov-int-content h2 {
        font-size: 1.5rem;
    }

    .card {
        height: 26rem;
    }

    .btn {
        padding: 0.625rem 0.75rem;
        font-size: 0.85rem;
    }
}