* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000037;
    --secondary-color: #bd8e3e;
    --white: #ffffff;
    --gray: #f5f5f5;
}

html, body {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
}

.hero, .section, .contact-section, .container, .hero-content, .areas-grid, .achievements-grid, .area-card, .contact-floating-card, .contact-card-content {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: visible;
    margin-left: 0;
    margin-right: 0;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
}

.hero-image, .hero-image img {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    height: auto;
    margin: 0 auto;
    display: block;
}

@media (max-width: 900px) {
    .hero-image, .hero-image img {
        max-width: 220px;
    }
}

@media (max-width: 600px) {
    .hero-image, .hero-image img {
        max-width: 120px;
    }
    .area-card, .contact-floating-card {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .contact-card-content {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

.areas-grid, .achievements-grid {
    grid-template-columns: 1fr !important;
}

.section, .contact-section {
    padding-left: 0;
    padding-right: 0;
}

body.menu-open {
    overflow: hidden !important;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.container, .hero-content, .areas-grid, .achievements-grid, .contact-floating-card, .contact-card-content {
    overflow: visible;
}

/* Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
}

/* Header */
.header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px #00000018;
    transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 48px;
    width: auto;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

/* Base Navigation Styles */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

/* Mobile Menu Button */
.mobile-menu {
    display: none;
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 999;
        padding-top: 80px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        text-align: center;
    }

    .mobile-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    body.menu-open {
        overflow: hidden;
    }

    .contact-header,
    .contact-social,
    .contact-location {
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-methods {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 0.5rem;
    }

    .contact-method {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 1rem auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .contact-method i:first-child {
        margin-left: 0;
        margin-right: 1rem;
    }

    .method-info {
        width: 100%;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .contact-method.email {
        max-width: 400px;
    }

    .container,
    .section,
    .hero-content,
    .areas-grid,
    .achievements-grid,
    .footer-content {
        padding-left: 4vw;
        padding-right: 4vw;
        box-sizing: border-box;
    }

    .section,
    .contact-section {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-content,
    .hero-text,
    .hero-image {
        width: 100% !important;
        max-width: 100vw !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box;
    }

    .hero-content {
        padding-left: 5vw !important;
        padding-right: 5vw !important;
        padding-bottom: 60px !important;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto !important;
    }

    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto !important;
    }

    .areas-grid,
    .achievements-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .area-card,
    .achievement-card {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-floating-card {
        width: auto !important;
        max-width: 340px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box;
    }

    .contact-card-content {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .area-card .learn-more {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        margin-top: 1.2rem;
    }

    .hero-image {
        max-width: none !important;
        width: auto !important;
    }
    .hero-image img {
        max-width: 260px !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 0.2rem;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-bg img {
        object-position: center 40% !important;
        content: url("assets/bannermobile.jpg") !important;
    }
}

@media (max-width: 480px) {
    .contact-method {
        max-width: 100%;
    }
    .method-info {
        text-align: left;
        align-items: flex-start;
    }

    .container,
    .section,
    .hero-content,
    .areas-grid,
    .achievements-grid,
    .footer-content {
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .hero-content {
        gap: 0.3rem;
        padding-bottom: 40px !important;
    }

    .contact-floating-card {
        max-width: 92vw !important;
    }

    .contact-card-content {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .area-card .learn-more {
        margin-top: 1rem;
    }

    .hero-image img {
        max-width: 180px !important;
    }

    .hero-bg img {
        object-position: center 30% !important;
    }
}

/* Hero Section */
.hero {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 120vh !important;
    overflow: hidden !important;
    background: #000037 !important;
    padding: 80px 0 !important;
    margin-top: 0 !important;
}

.hero-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    pointer-events: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-bg img {
    width: auto !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    z-index: 0 !important;
    pointer-events: none !important;
    content: url("assets/bannerhero.png") !important;
}

.hero-gradient {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(120deg, #00003799 60%, #1a1a4d99 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.hero-content, .hero-content * {
    color: #fff !important;
}

.hero-text {
    flex: 0 1 60% !important;
    padding-top: 0 !important;
    padding-right: 1rem !important;
    padding-left: 2rem !important;
    margin-top: auto !important;
}

.hero-content h1 {
    font-size: 4.2rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 700;
    background: linear-gradient(90deg, var(--white) 60%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.hero-content h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    margin-top: 10px;
    margin-left: 2px;
    animation: underline 2s infinite alternate;
}

@keyframes underline {
    0% { width: 60px; }
    100% { width: 120px; }
}

.hero-content .subtitle {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.4;
    max-width: 90%;
}

.hero-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: nowrap;
    margin-top: 2.5rem;
    max-width: 90%;
}

.badge {
    background: linear-gradient(90deg, #bd8e3e 80%, #fff2d6 100%) !important;
    color: #fff !important;
    padding: 0.7rem 1.3rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    transition: all 0.3s !important;
    font-size: 1rem !important;
    white-space: normal !important;
    text-align: center !important;
    width: 100% !important;
    min-height: 45px !important;
    justify-content: center !important;
    line-height: 1.2 !important;
}

.badge i {
    font-size: 1.2rem !important;
    color: #fff !important;
    flex-shrink: 0 !important;
}

.badge:hover {
    background: linear-gradient(90deg, #fff2d6 0%, #bd8e3e 100%);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px #bd8e3e33;
}

.hero-image {
    flex: 0 1 40%;
    position: relative;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-width: 0;
    box-sizing: border-box;
    border-radius: 50%;
    box-shadow: 0 10px 40px #00000055;
    border: 6px solid #fff2d6;
    background: #fff2d6;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--secondary-color);
    font-size: 1.1rem;
}

.cta-button:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(189, 142, 62, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--white);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

/* About Section */
.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 0 1rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    max-width: 80px;
}

.about-text {
    flex: 1;
}

.highlight {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 4px solid var(--secondary-color);
}

/* Mobile Styles for About Section */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .about-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    .experience-badge {
        bottom: -15px;
        right: -15px;
        padding: 1.2rem;
    }

    .experience-badge .number {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.7rem;
        max-width: 70px;
    }

    .about-text {
        text-align: center;
        padding: 0 1rem;
    }

    .highlight {
        font-size: 1.1rem;
        margin: 1.5rem auto;
        max-width: 90%;
        text-align: left;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 0 0.5rem;
    }

    .about-image {
        max-width: 250px;
    }

    .experience-badge {
        bottom: -10px;
        right: -10px;
        padding: 1rem;
    }

    .experience-badge .number {
        font-size: 1.5rem;
    }

    .experience-badge .text {
        font-size: 0.65rem;
        max-width: 60px;
    }

    .about-text {
        padding: 0 0.5rem;
    }

    .highlight {
        font-size: 1rem;
        margin: 1rem auto;
        padding-left: 0.8rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }
}

/* Títulos padronizados para seções */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    line-height: 1.15;
    width: 100%;
    max-width: 100%;
    display: block;
}

.section-subtitle {
    font-size: 1.4rem;
    color: #555;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.2rem;
    opacity: 0.85;
    line-height: 1.3;
    width: 100%;
    max-width: 100%;
    display: block;
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.1rem;
        margin-bottom: 1.2rem;
    }
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }
}

/* Espaçamento entre título, subtítulo e cards */
.areas-grid,
.achievements-grid {
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .areas-grid,
    .achievements-grid {
        margin-top: 1.5rem;
    }
}

/* Espaçamento entre cards */
.areas-grid {
    gap: 2.5rem;
}
.achievements-grid {
    gap: 2rem;
}

/* Centralização dos títulos e cards */
.areas-section,
.achievements-section {
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.area-card {
    text-align: center;
    padding: 3rem 2rem 2.5rem 2rem;
    background: rgba(255,255,255,0.07);
    border-radius: 24px;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1.5px solid #fff2d622;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    box-shadow: 0 2px 12px #00000010;
    width: 100%;
    min-width: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.area-card i {
    font-size: 3.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.area-card:hover {
    box-shadow: 0 8px 32px #bd8e3e33;
    transform: translateY(-8px) scale(1.03);
    border-color: var(--secondary-color);
}

.area-card:hover i {
    color: #fff2d6;
    transform: scale(1.15) rotate(-8deg);
}

.area-card h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.area-card p {
    margin-bottom: 2rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
    opacity: 0.92;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: gap 0.3s, color 0.3s;
    margin-top: auto;
    letter-spacing: 0.5px;
}

.learn-more i {
    font-size: 1.3rem;
    margin: 0;
    transition: transform 0.3s;
}

.learn-more:hover {
    gap: 1rem;
    color: #fff2d6;
}

.learn-more:hover i {
    transform: translateX(7px);
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.achievement-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 100px 0 60px 0;
    background: linear-gradient(135deg, #000037 80%, #1a1a4d 100%);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,55,0.97) 0%, rgba(0,0,55,0.9) 100%);
    z-index: 1;
}

.contact-floating-card {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1.5px solid #fff2d622;
    box-shadow: 0 8px 32px #00000022;
    overflow: hidden;
    width: 100%;
    min-width: 0;
}

.contact-card-content {
    padding: 3rem 2rem;
    color: var(--white);
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--white) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-method.email {
    grid-column: 1 / -1;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 1.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 15px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s;
    border: 1.5px solid #fff2d622;
    box-shadow: 0 2px 12px #00000010;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-method i:first-child {
    font-size: 2rem;
    margin-right: 1.5rem;
    color: var(--secondary-color);
    background: #fff2d6;
    border-radius: 50%;
    padding: 0.5rem;
    box-shadow: 0 2px 8px #bd8e3e22;
}

/* Mobile Styles for Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0 40px 0;
    }

    .contact-floating-card {
        margin: 0 1rem;
        border-radius: 20px;
    }

    .contact-card-content {
        padding: 2rem 1rem;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .contact-method {
        padding: 1.2rem 1rem;
        font-size: 1rem;
    }

    .contact-method i:first-child {
        font-size: 1.8rem;
        margin-right: 1rem;
    }

    .method-info h3 {
        font-size: 1.1rem;
    }

    .method-info p {
        font-size: 0.9rem;
    }

    .contact-social {
        margin: 2rem 0;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .contact-location {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0 30px 0;
    }

    .contact-floating-card {
        margin: 0 0.5rem;
        border-radius: 16px;
    }

    .contact-card-content {
        padding: 1.5rem 0.8rem;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .contact-methods {
        padding: 0;
    }

    .contact-method {
        padding: 1rem 0.8rem;
        font-size: 0.95rem;
    }

    .contact-method i:first-child {
        font-size: 1.6rem;
        margin-right: 0.8rem;
    }

    .method-info h3 {
        font-size: 1rem;
    }

    .method-info p {
        font-size: 0.85rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .contact-location {
        margin-top: 1.2rem;
        padding-top: 1.2rem;
        font-size: 0.85rem;
    }
}

.contact-social {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-social p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s;
    border: 1.5px solid #fff2d622;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.contact-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1.5px solid #fff2d622;
}

.contact-location i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #00002a;
    color: var(--white);
    padding: 2.5rem 0 1.5rem 0;
    text-align: center;
    border-top: 1.5px solid #fff2d622;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer .social-links {
    margin-top: 1rem;
}

.footer .social-link {
    background: #fff2d6;
    color: #000037;
    border: none;
    margin: 0 0.3rem;
}

.footer .social-link:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        max-width: 1200px;
    }
    .hero-text {
        padding-top: 4rem;
        padding-left: 1rem;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    .hero-text {
        padding: 2rem 0 0 0;
        max-width: 100%;
    }
    .hero-image img {
        width: 100%;
        max-width: 220px;
        min-width: 0;
    }
    .hero-image {
        max-width: 100%;
        min-width: 0;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        max-width: 100%;
    }
    .badge {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease-in-out;
        z-index: 999;
        padding-top: 80px;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu {
        display: block;
        z-index: 1000;
    }
    
    .hero {
        min-height: 110vh !important;
        position: relative !important;
    }
    .hero-bg img {
        width: 100% !important;
        height: auto !important;
        content: url("assets/bannermobile.jpg") !important;
    }
    .hero-content {
        margin-top: auto !important;
        padding-bottom: 40px !important;
        padding-top: 75% !important;
        max-width: 100% !important;
    }
    .hero-content h1 {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }
    .hero-content .subtitle {
        font-size: 1.2rem !important;
        margin-bottom: 1.5rem !important;
        max-width: 80% !important;
    }
    .hero-badges {
        gap: 0.6rem !important;
        flex-direction: column !important;
        width: 80% !important;
        margin: 0 auto !important;
    }
    .badge {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh !important;
    }
    .hero-content {
        padding-top: 85% !important;
        padding-bottom: 30px !important;
        width: 90% !important;
    }
    .hero-content h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.3rem !important;
    }
    .hero-content .subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.2rem !important;
        max-width: 90% !important;
    }
    .hero-badges {
        width: 90% !important;
        gap: 0.5rem !important;
    }
    .badge {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.85rem !important;
    }
    .badge i {
        font-size: 1rem !important;
    }
    .header {
        padding: 0.5rem 0;
    }
    .logo {
        height: 38px;
    }
    .contact-card-content {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .area-card, .contact-floating-card {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .contact-card-content {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Fix for cursor on mobile */
@media (max-width: 768px) {
    .cursor, .cursor-follower {
        display: none;
    }
}

/* Fix for section spacing */
.section:first-of-type {
    margin-top: 80px;
}

/* Fix for container padding */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fix for hero section padding */
.hero {
    padding-top: 200px !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding-bottom: 0 !important;
}

/* Responsive adjustments for hero */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }

    .hero-text {
        flex: 0 1 50%;
    }

    .hero-image {
        flex: 0 1 50%;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .badge i {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 60px !important;
        min-height: 100vh !important;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }

    .hero-text {
        flex: 1;
        padding-top: 0;
        order: 2;
    }

    .hero-image {
        flex: 1;
        order: 1;
        margin: 0 auto;
        max-width: 300px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle,
    .hero-badges {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1.2rem;
    }

    .hero-image {
        max-width: 250px;
    }

    .badge {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        max-width: 1200px;
    }

    .hero-text {
        padding-top: 4rem;
        padding-left: 1rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

/* Microinteractions and Animations */
button, .badge, .area-card, .contact-method, .learn-more, .social-link {
    transition: all 0.3s cubic-bezier(.4,2,.3,1);
}

.section, .contact-section {
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 1025px) {
    .areas-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        justify-items: center !important;
        gap: 2.5rem !important;
    }
    .area-card {
        max-width: 340px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-shadow: 0 6px 32px #bd8e3e22, 0 1.5px 8px #00000010;
        border-radius: 24px;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
    .achievements-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        justify-items: center !important;
        gap: 2rem !important;
    }
    .achievement-card {
        max-width: 320px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-shadow: 0 6px 32px #bd8e3e22, 0 1.5px 8px #00000010;
        border-radius: 20px;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

.section.dark .section-title {
    color: var(--white) !important;
}

@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 40px 0;
        min-height: 40vh;
        background-size: cover;
    }
    .hero-content {
        max-width: 95vw;
        padding: 1.2rem 1rem;
    }
}

@media (max-width: 1400px) {
    .hero {
        padding-top: 460px !important;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 320px !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 240px !important;
    }
    .hero-bg img {
        object-position: center 40% !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 180px !important;
    }
}

/* Seletor específico para a imagem */
img[src*="bannerhero"] {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 80% !important;
    transform: translateY(10%) !important;
}

@media (max-width: 768px) {
    .hero-bg {
        transform: translateY(10%) !important;
    }
    img[src*="bannerhero"] {
        transform: translateY(5%) !important;
    }
}

@media (max-width: 480px) {
    .hero-bg {
        transform: translateY(5%) !important;
    }
    img[src*="bannerhero"] {
        transform: none !important;
        object-position: center 70% !important;
    }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 32px;
    right: 32px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    z-index: 1200;
    font-size: 2.2rem;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.08);
}

/* Espaçamento entre seções */
.section, .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .section, .contact-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        bottom: 16px;
        right: 16px;
    }
}

/* Reduzir margem entre .section e .footer */
footer.footer {
    margin-top: 0;
} 