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

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', 'Poppins', 'Roboto', Arial, sans-serif;
    background: radial-gradient(1200px 800px at 10% -10%, #14213d 0%, #0b1229 35%, #070b1a 100%);
    line-height: 1.7;
    color: #e2e8f0;
    min-height: 100vh;
    letter-spacing: 0.01em;
}

/* Evita hifenização e cortes dentro de palavras (especialmente no iOS) */
h1, h2, h3, h4, h5, h6, p, li {
    overflow-wrap: normal;
    word-break: normal;
    white-space: normal;
    hyphens: none;
    -webkit-hyphens: none;
}

@supports (-webkit-hyphens: none) {
    h1, h2, h3, h4, h5, h6, p, li {
        -webkit-hyphens: none !important;
        hyphens: none !important;
    }
}

h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.7rem;
    color: #67e8f9;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 0 22px rgba(103,232,249,0.25);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: rgba(13, 18, 40, 0.35);
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.06);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
}

/* Header e Navegação */
.navbar {
    background: rgba(6, 10, 24, 0.55);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    border-bottom: 1px solid rgba(103,232,249,0.18);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

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

.logo img {
    width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    padding: 0.8rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.nav-links a:hover {
    background: rgba(103, 232, 249, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 6px 22px rgba(103,232,249,0.25);
    color: #67e8f9;
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 768px) {
    .nav-links a {
        padding: 0.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-links a {
        padding: 0.4rem;
        font-size: 0.9rem;
    }
}

/* Menu Button */
.menu-btn {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1101;
    position: relative;
    pointer-events: auto;
}

/* Hero Section */
.hero {
    background: radial-gradient(800px 500px at 80% -20%, rgba(38,208,206,0.10), rgba(38,208,206,0) 60%),
                linear-gradient(180deg, rgba(4, 7, 18, 0.95) 0%, rgba(5, 8, 22, 0.95) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    padding: 90px 20px;
    overflow: hidden;
}

.hero .container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero overlays for futuristic grid and glow */
.hero::before {
    content: '';
    position: absolute;
    inset: -10% -10% -10% -10%;
    background: radial-gradient(600px 350px at 10% 10%, rgba(103,232,249,0.18), rgba(103,232,249,0) 60%),
                radial-gradient(600px 350px at 90% 20%, rgba(99,102,241,0.15), rgba(99,102,241,0) 60%);
    filter: blur(30px);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(103,232,249,0.08) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(103,232,249,0.08) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

.hero-tagline {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 0 22px rgba(103,232,249,0.25);
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    -webkit-hyphens: none;
    text-wrap: balance;
}

.hero h1 .highlight {
    position: relative;
    display: inline-block;
    color: #26d0ce;
    text-shadow: 0 0 15px rgba(38, 208, 206, 0.4);
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.92;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    min-width: 280px;
    flex: 1;
    max-width: 320px;
    text-align: left;
    border: 1px solid rgba(103,232,249,0.15);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.feature-icon {
    background: rgba(38, 208, 206, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature i {
    font-size: 1.8rem;
    color: #67e8f9;
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.feature-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-trust {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust span {
    display: block;
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.tech-icons i {
    font-size: 2.2rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.tech-icons i:hover {
    transform: scale(1.2);
    opacity: 1;
    color: #26d0ce;
}

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

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 125px 15px;
        min-height: auto;
    }

    .hero-tagline {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature i {
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-desc {
        font-size: 0.85rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .cta-button.secondary {
        margin-left: 0;
        width: 100%;
        max-width: 300px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-trust {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .tech-icons {
        gap: 1.2rem;
    }
    
    .tech-icons i {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 10px 60px;
    }

    .hero-content {
        padding: 1rem;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .feature {
        padding: 0.8rem;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature i {
        font-size: 1.3rem;
    }

    .feature-title {
        font-size: 0.95rem;
    }
    
    .feature-desc {
        font-size: 0.8rem;
    }
    
    .tech-icons {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tech-icons i {
        font-size: 1.6rem;
        margin: 0 0.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 0.5rem;
    }

    .logo {
        max-width: 150px;
        margin-bottom: 0.5rem;
    }

    .nav-links {
        margin-top: 0.5rem;
    }

    .nav-links a {
        padding: 0.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 100px;
    }

    .nav-links {
        display: flex;
        gap: 0.5rem;
    }

    .nav-links a {
        padding: 0.4rem;
        font-size: 0.9rem;
    }
}

/* Botões */
.cta-button {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: linear-gradient(90deg, #06b6d4 0%, #7c3aed 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2.3rem;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(124,58,237,0.25), 0 0 0 1px rgba(255,255,255,0.08) inset;
    cursor: pointer;
    transition: background 0.4s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.03em;
}
.cta-button.primary:hover {
    background: linear-gradient(90deg, #22d3ee 0%, #8b5cf6 100%);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 40px rgba(124,58,237,0.35);
}


.cta-button.secondary {
    background: rgba(34, 211, 238, 0.06);
    color: #67e8f9;
    border: 2px solid #22d3ee;
    border-radius: 12px;
    padding: 0.85rem 2.3rem;
    font-size: 1.15rem;
    font-weight: 600;
    transition: background 0.4s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.02em;
}
.cta-button.secondary:hover {
    background: rgba(34, 211, 238, 0.18);
    color: #e2e8f0;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 36px rgba(34,211,238,0.25);
}


.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}



/* Serviços */
.services {
    padding: 5rem 0;
    background: transparent;
}

.services h2 {
    font-weight: 600;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s;
}

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

.service-card i {
    font-size: 2.5rem;
    color: #67e8f9;
    margin-bottom: 1rem;
}

/* Sobre Nós */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.06);
}

.about-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
}

.about-intro:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #06b6d4, #7c3aed);
    border-radius: 3px;
}

.about-mission,
.about-vision,
.about-values,
.about-differential {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid rgba(103,232,249,0.45);
}

.about-mission:hover,
.about-vision:hover,
.about-values:hover,
.about-differential:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
    color: #67e8f9;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-content h3 i {
    color: #67e8f9;
    font-size: 1.8rem;
    background: rgba(38, 208, 206, 0.1);
    padding: 0.8rem;
    border-radius: 12px;
}

.about-content p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.about-values ul,
.about-differential ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.about-values li,
.about-differential li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-values li:before,
.about-differential li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #22d3ee;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-values strong {
    color: #a78bfa;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .about-intro {
        font-size: 1.1rem;
        padding-bottom: 1.5rem;
        margin-bottom: 2rem;
    }

    .about-mission,
    .about-vision,
    .about-values,
    .about-differential {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about-content h3 {
        font-size: 1.3rem;
    }

    .about-content h3 i {
        padding: 0.6rem;
        font-size: 1.4rem;
    }

    .about-content p,
    .about-values li,
    .about-differential li {
        font-size: 1rem;
    }
}

/* Projetos */
.projects {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(6,10,24,0.95) 0%, rgba(8,12,28,0.95) 100%);
    color: white;
}

/* Hardening: impedir hifenização e divisões dentro de palavras no iOS */
.hero h1,
.project-card h3,
.project-card p {
    overflow-wrap: normal !important;
    word-break: normal !important;
    white-space: normal !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
}

.projects h2 {
    color: white;
    font-weight: 600;
    margin-bottom: 3rem;
}

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

.project-card {
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    padding: 2.2rem 2rem;
    margin: 1.2rem;
    transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s cubic-bezier(.4,2,.3,1);
    border: 1px solid rgba(103,232,249,0.12);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}
.project-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 46px rgba(0,0,0,0.45);
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(103,232,249, 0.25);
}

.project-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.project-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    border: 2px solid rgba(103,232,249,0.25);
}

.project-card .icon i {
    font-size: 2rem;
    color: #67e8f9;
}

.project-card h3 {
    color: #e2e8f0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: keep-all;
    text-wrap: balance;
}

.project-card p {
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.6;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    -webkit-hyphens: none;
}

/* Contato */
.contact {
    padding: 5rem 0;
    background: transparent;
}

/* Garante que, no bloco de contato, nada ultrapasse os cantos arredondados do container */
.contact .container {
    overflow: hidden;
}

/* Evita qualquer vazamento lateral dentro da seção de contato */
.contact-wrapper, .contact-form, .contact-map, .address, .map {
    max-width: 100%;
}

@media (max-width: 768px) {
    .address, .map, .contact-form { 
        margin-left: 0; 
        margin-right: 0; 
    }
}

.contact h2 {
    font-weight: 600;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.contact-form {
    padding: 2rem;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.06);
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(6,10,24,0.45);
    color: #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

#contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address {
    background: rgba(255,255,255,0.04);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.06);
}

.address h3 {
    color: #67e8f9;
    margin-bottom: 0.5rem;
}

.address p {
    color: #94a3b8;
    line-height: 1.6;
}

.map {
    flex-grow: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.06);
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

@media (max-width: 530px) {
    .map iframe { min-height: 320px; height: 320px; }
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        order: -1;
    }
}

@media (max-width: 530px) {
    .desktop-only {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .navbar {
        padding: 1rem;
        justify-content: flex-end;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(6,10,24,0.98);
        backdrop-filter: blur(6px) saturate(120%);
        -webkit-backdrop-filter: blur(6px) saturate(120%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
        z-index: 1000;
    }

    /* Extra escurecimento do fundo dentro do menu */
    .nav-links::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.25);
        pointer-events: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links li a {
        font-size: 1.2rem;
    }
}

@media (min-width: 531px) {
    .nav-links {
        display: flex !important;
    }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    background: #25D366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 320px) {
    .whatsapp-float {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 10px;
        right: 10px;
    }
}

/* Footer */
footer {
    background: linear-gradient(180deg, #060a18 0%, #070b1a 100%);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(103,232,249,0.18);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-info p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #67e8f9;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: #26d0ce;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.4;
}

.footer-contact i{
    margin-right: 10px;
    color: #26d0ce;
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-links ul,
    .footer-contact ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .feature {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

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