/* ============================================
   RESET E CONFIGURAÇÕES GERAIS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   VARIÁVEIS DE CORES
   ============================================ */
:root {
    --primary-blue: #1A5A8A;
    --secondary-blue: #2A7AB0;
    --accent-blue: #4D9CD0;
    --light-blue: #E8F4FC;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #1DA851;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-dark: #333333;
    --text-light: #666666;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(42, 122, 176, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    animation: fadeInUp 0.5s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    margin-right: 10px;
}

.logo-highlight {
    color: var(--secondary-blue);
}

/* Menu Desktop */
.desktop-menu {
    display: flex;
    list-style: none;
}

.desktop-menu li {
    margin-left: 30px;
}

.desktop-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.desktop-menu a:hover,
.desktop-menu a.active {
    color: var(--secondary-blue);
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-blue);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.desktop-menu a:hover::after,
.desktop-menu a.active::after {
    width: 100%;
}

/* Menu Mobile */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    padding: 80px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--secondary-blue);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Botões WhatsApp */
.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.btn-whatsapp-mobile {
    background-color: var(--secondary-blue);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-whatsapp-mobile:hover {
    background-color: var(--primary-blue);
}

/* ============================================
   HERO SECTION (RESPONSIVIDADE OTIMIZADA)
   ============================================ */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    padding: 40px 0;
}

/* Background aprimorado */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, 
        rgba(26, 90, 138, 0.95) 0%, 
        rgba(42, 122, 176, 0.9) 50%, 
        rgba(77, 156, 208, 0.85) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></svg>') repeat;
    opacity: 0.1;
    z-index: -1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    z-index: -1;
}

/* Container do conteúdo */
.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 20px 0;
    width: 100%;
}

/* Badge de destaque */
.hero-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 3;
    white-space: nowrap;
}

.hero-badge i {
    font-size: 1.1rem;
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Título */
.hero-text {
    animation: fadeInUp 0.8s ease 0.2s both;
    width: 100%;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
}

.hero-title .highlight {
    background: linear-gradient(90deg, var(--white), var(--light-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--whatsapp-green), var(--accent-blue));
    border-radius: 2px;
}

/* Subtítulo */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 100%;
}

/* Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.feature i {
    color: var(--whatsapp-green);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    flex-shrink: 0;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
    color: var(--white);
    padding: clamp(14px, 2vw, 18px) clamp(25px, 3vw, 35px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    border: 2px solid transparent;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    border-color: var(--white);
}

.btn-hero-primary i {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: clamp(14px, 2vw, 18px) clamp(25px, 3vw, 35px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    border-color: var(--white);
}

.btn-hero-secondary i {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
}

/* Estatísticas */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(15px, 2vw, 20px);
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    position: relative;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    position: absolute;
    top: 0;
    right: -0.8em;
    font-size: 0.8em;
}

.stat:nth-child(3) .stat-number::after {
    content: '%';
}

.stat:nth-child(4) .stat-number::after {
    content: '';
}

.stat-label {
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    opacity: 0.8;
    font-weight: 500;
    line-height: 1.2;
}

/* Imagem */
.hero-image {
    animation: fadeInUp 0.8s ease 0.4s both;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.image-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: clamp(20px, 3vw, 30px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.image-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255,255,255,0.1) 50%, 
        transparent 70%);
    animation: shine 3s infinite;
}

.image-placeholder {
    display: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.7;
    animation: fadeIn 1s ease 1s both;
    cursor: pointer;
    z-index: 2;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Elementos flutuantes decorativos */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-tooth,
.floating-star,
.floating-heart {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: clamp(1.5rem, 2vw, 2rem);
    animation: floatAround 20s infinite linear;
}

.floating-tooth {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.floating-star {
    top: 60%;
    right: 5%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.floating-heart {
    bottom: 30%;
    left: 10%;
    animation-delay: -10s;
    animation-duration: 30s;
}

/* ============================================
   SEÇÕES COMUNS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-blue);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--text-light);
    font-size: clamp(1rem, 2vw, 1.1rem);
}

/* ============================================
   SOBRE MIM
   ============================================ */
.sobre-mim {
    padding: 100px 0;
    background-color: var(--light-blue);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.sobre-mim-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sobre-mim-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sobre-mim-image img:hover {
    transform: scale(1.02);
}

.sobre-mim-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.sobre-mim-text h3 span {
    display: block;
    font-size: 1rem;
    color: var(--secondary-blue);
    font-weight: 400;
    margin-top: 5px;
}

.qualificacoes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.qualificacao {
    background-color: var(--white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.qualificacao:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.qualificacao i {
    color: var(--secondary-blue);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
    transition: transform 0.3s ease;
}

.qualificacao:hover i {
    transform: scale(1.2);
}

/* ============================================
   SERVIÇOS
   ============================================ */
.servicos {
    padding: 100px 0;
    background-color: var(--white);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.servico-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--light-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.servico-card:hover::before {
    left: 100%;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(42, 122, 176, 0.1);
}

.servico-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-blue);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.servico-card:hover .servico-icon {
    background-color: var(--secondary-blue);
    color: var(--white);
    transform: rotate(15deg) scale(1.1);
}

.servico-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.servico-link {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.servico-link:hover {
    color: var(--primary-blue);
}

.servico-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.servico-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais {
    padding: 100px 0;
    background-color: var(--light-blue);
    animation: fadeInUp 0.8s ease 0.5s both;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.diferencial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.diferencial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.diferencial-card:hover::after {
    transform: scaleX(1);
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(42, 122, 176, 0.1);
}

.diferencial-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-blue);
    opacity: 0.2;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.diferencial-card:hover .diferencial-number {
    opacity: 0.3;
    transform: scale(1.1);
}

.diferencial-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos {
    padding: 100px 0;
    background-color: var(--white);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.depoimentos-slider {
    padding: 50px 0;
}

.depoimento-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.swiper-slide-active .depoimento-card {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.depoimento-rating {
    color: #FFD700;
    margin-bottom: 15px;
}

.depoimento-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.depoimento-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.swiper-slide-active .author-avatar {
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--secondary-blue);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    text-align: center;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    background-color: var(--whatsapp-green);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: pulse 0.5s ease;
}

.btn-cta i {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* ============================================
   CONTATO
   ============================================ */
.contato {
    padding: 100px 0;
    background-color: var(--white);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--light-blue);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--secondary-blue);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background-color: var(--secondary-blue);
    color: var(--white);
    transform: rotate(15deg) scale(1.1);
}

.info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contato-form {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contato-form:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contato-form h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(42, 122, 176, 0.1);
    transform: translateY(-2px);
}

.btn-submit {
    background-color: var(--secondary-blue);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 90, 138, 0.3);
}

.btn-submit i {
    margin-right: 10px;
}

.mapa {
    margin-top: 50px;
}

.mapa-placeholder {
    background-color: var(--light-gray);
    border: 2px dashed var(--secondary-blue);
    border-radius: 10px;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.mapa-placeholder:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.mapa-placeholder i {
    font-size: 3rem;
    color: var(--secondary-blue);
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.mapa-placeholder:hover i {
    transform: scale(1.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
    animation: fadeInUp 0.8s ease 0.9s both;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--light-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contato li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contato i {
    margin-right: 10px;
    color: var(--accent-blue);
    margin-top: 5px;
    transition: transform 0.3s ease;
}

.footer-contato li:hover i {
    transform: scale(1.2);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-blue);
    font-size: 0.9rem;
}

/* ============================================
   ELEMENTOS FLUTUANTES
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(42, 122, 176, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 90, 138, 0.4);
}

/* ============================================
   RESPONSIVIDADE COMPLETA
   ============================================ */

/* ========== TABLETS GRANDES (992px - 1200px) ========== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .sobre-mim-content,
    .contato-content {
        gap: 40px;
    }
}

/* ========== TABLETS (768px - 992px) ========== */
@media (max-width: 992px) {
    /* HEADER E MENU */
    .navbar {
        padding: 15px 0;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .btn-whatsapp {
        display: none;
    }
    
    /* HERO SECTION */
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
        margin-top: 70px;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-badge {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 0 auto 30px;
        display: inline-flex;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* SOBRE MIM */
    .sobre-mim {
        padding: 70px 0;
    }
    
    .sobre-mim-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .sobre-mim-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .qualificacoes {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 30px auto 0;
    }
    
    /* SERVIÇOS */
    .servicos {
        padding: 70px 0;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    /* DIFERENCIAIS */
    .diferenciais {
        padding: 70px 0;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    /* DEPOIMENTOS */
    .depoimentos {
        padding: 70px 0;
    }
    
    /* CTA FINAL */
    .cta-final {
        padding: 70px 0;
    }
    
    /* CONTATO */
    .contato {
        padding: 70px 0;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contato-info {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    /* FOOTER */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    /* ELEMENTOS FLUTUANTES */
    .floating-elements {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ========== TABLETS PEQUENOS (576px - 768px) ========== */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 350px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .servicos-grid,
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ========== SMARTPHONES GRANDES (480px - 576px) ========== */
@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 90px 0 40px;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-features {
        gap: 0.8rem;
    }
    
    .feature {
        font-size: 1rem;
    }
    
    .hero-cta {
        gap: 15px;
    }
    
    .hero-stats {
        gap: 20px;
        padding-top: 30px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .sobre-mim-text h3 {
        font-size: 1.6rem;
    }
    
    .servico-card,
    .diferencial-card {
        padding: 25px 20px;
    }
    
    .contato-form {
        padding: 25px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contato li {
        justify-content: center;
    }
}

/* ========== SMARTPHONES PEQUENOS (até 480px) ========== */
@media (max-width: 480px) {
    .hero {
        padding: 80px 0 30px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat {
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .sobre-mim-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 70px;
        right: 15px;
    }
}

/* ========== SMARTPHONES MUITO PEQUENOS (até 360px) ========== */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .hero-features {
        gap: 0.6rem;
    }
    
    .feature {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .feature i {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .servico-card h3,
    .diferencial-card h3 {
        font-size: 1.2rem;
    }
    
    .contato-form {
        padding: 20px;
    }
}

/* ========== ORIENTAÇÃO LANDSCAPE EM MOBILE ========== */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-features {
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .hero-cta {
        margin-bottom: 2rem;
    }
    
    .mobile-menu {
        overflow-y: auto;
        max-height: 100vh;
    }
}

/* ========== OTIMIZAÇÕES PARA TOUCH ========== */
@media (hover: none) and (pointer: coarse) {
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-cta,
    .btn-submit,
    .servico-link,
    .nav-link {
        min-height: 44px;
    }
    
    .desktop-menu a::after {
        display: none;
    }
    
    .servico-card:hover,
    .diferencial-card:hover,
    .info-card:hover {
        transform: none;
    }
}

/* ========== PREFERÊNCIA DE REDUÇÃO DE MOVIMENTO ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-badge,
    .floating-tooth,
    .floating-star,
    .floating-heart,
    .wheel {
        animation: none;
    }
    
    .image-container::before {
        animation: none;
    }
}