/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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



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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 191, 255, 0.3), transparent);
    opacity: 0.6;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(1000px) rotateX(60deg);
    transform-origin: 50% 0%;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.3);
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    height: 100%;
}

.hero-text {
    max-width: 600px;
    color: white;
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #00BFFF;
    opacity: 1;
}

.modern-badge {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 191, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.modern-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.modern-badge:hover::before {
    left: 100%;
}

.badge-icon {
    font-size: 16px;

}

.pulsing-icon {

}



.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    transform: scale(1.3) !important;
    opacity: 1;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #00BFFF;
}

.hero-title {
    font-size: 51px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-title {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 30%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.highlight {
    color: #00BFFF;
}

.gradient-text {
    background: linear-gradient(135deg, #00BFFF 0%, #0ea5e9 50%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-offer {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 18px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #20b358;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.modern-cta {
    background: linear-gradient(135deg, #25D366 0%, #20b358 100%);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #20b358 0%, #1a9e4a 100%);
}

.ultra-modern-cta {
    background: linear-gradient(135deg, #25D366 0%, #20b358 50%, #1a9e4a 100%);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.ultra-modern-cta::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.6s ease;
}

.ultra-modern-cta:hover::before {
    left: 100%;
}

.ultra-modern-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(37, 211, 102, 0.6);
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.ultra-modern-cta:hover .cta-glow {
    opacity: 1;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

.phone-icon {
    width: 24px;
    height: 24px;
}

/* Container dos botões CTA */
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Botão de telefone */
.cta-button-phone {
    background: linear-gradient(135deg, #16A085 0%, #138D75 50%, #117A65 100%);
    box-shadow: 0 8px 32px rgba(22, 160, 133, 0.4);
    padding: 18px 45px;
    min-width: 240px;
}

.cta-button-phone:hover {
    background: linear-gradient(135deg, #138D75 0%, #117A65 100%);
    box-shadow: 0 16px 48px rgba(22, 160, 133, 0.6);
}

/* Segunda Dobra - Disponibilidade */
.availability-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}

.availability-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}



.availability-text {
    max-width: 800px;
    text-align: center;
    opacity: 1;
}

.availability-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 10px;
    line-height: 1.2;
}

.availability-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #00BFFF;
    margin-bottom: 30px;
    line-height: 1.3;
}

.availability-description {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.availability-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.availability-features .feature-item {
    flex: none;
    min-width: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(0, 191, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 191, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 191, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.1);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #00BFFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.feature-text {
    font-size: 16px;
    color: #2d3748;
    font-weight: 500;
}

.availability-card {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    max-width: 500px;
    margin: 0 auto;
}

.availability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-subtitle {
    font-size: 18px;
    color: #00BFFF;
    margin-bottom: 30px;
    font-weight: 600;
}

.card-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    min-width: 180px;
    justify-content: center;
}

.card-button:hover {
    background: #20b358;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.card-button .whatsapp-icon {
    width: 20px;
    height: 20px;
}

.card-button .phone-icon {
    width: 20px;
    height: 20px;
}

/* Container dos botões do card */
.card-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Botão de telefone no card */
.card-button-phone {
    background: #16A085;
    box-shadow: 0 4px 20px rgba(22, 160, 133, 0.3);
    padding: 16px 40px;
    min-width: 200px;
}

.card-button-phone:hover {
    background: #138D75;
    box-shadow: 0 6px 25px rgba(22, 160, 133, 0.4);
}

/* Terceira Dobra - Especialistas */
.specialists-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.specialists-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="specialist-grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23specialist-grid)"/></svg>');
    opacity: 0.3;
}

.specialists-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.specialists-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #00BFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 1;
}

.specialists-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 1;
}

.specialists-description {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.specialist-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.modern-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.modern-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 191, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-glass-card:hover::before {
    opacity: 1;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.modern-glass-card:hover .card-shine {
    left: 100%;
}

.specialist-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 191, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}



.specialist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 191, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.specialist-card:hover::before {
    opacity: 1;
}

.specialist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 191, 255, 0.3);
}

.specialist-card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #00BFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.modern-icon {
    background: linear-gradient(135deg, #00BFFF 0%, #0ea5e9 50%, #38bdf8 100%);
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.modern-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-icon:hover::before {
    opacity: 1;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.specialist-card:hover .card-icon {
    background: #0099cc;
    transform: scale(1.1);
}

.specialist-card .card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    line-height: 1.3;
}

.specialist-card .card-description {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
}

/* Quarta Dobra - Mais Serviços */
.services-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="services-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="2" fill="rgba(0,191,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23services-pattern)"/></svg>');
    opacity: 0.5;
}

.services-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 1;
}

.services-description {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    opacity: 1;
    transform: translateY(0);
}



.service-icon {
    width: 40px;
    height: 40px;
    background: #00BFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}



.service-text {
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.4;
}

.services-cta-card {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(0);
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.services-cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}



.services-cta-card:hover::after {
    opacity: 1;
}

.ultra-modern-cta-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1a365d 100%);
    border: 1px solid rgba(0, 191, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.ultra-modern-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ultra-modern-cta-card:hover::before {
    opacity: 1;
}

.cta-radial-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
}



.ultra-modern-cta-card:hover .cta-radial-glow {
    opacity: 0.6;
}

.services-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="cta-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cta-dots)"/></svg>');
    opacity: 0.3;
}

.cta-card-content {
    position: relative;
    z-index: 2;
}

.cta-card-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cta-card-subtitle {
    font-size: 18px;
    color: #00BFFF;
    margin-bottom: 30px;
    font-weight: 600;
}

.cta-card-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    min-width: 180px;
    justify-content: center;
}

.cta-card-button:hover {
    background: #20b358;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.ultra-modern-button {
    background: linear-gradient(135deg, #25D366 0%, #20b358 50%, #1a9e4a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.ultra-modern-button::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.6s ease;
}

.ultra-modern-button:hover::before {
    left: 100%;
}

.ultra-modern-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.button-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.ultra-modern-button:hover .button-glow {
    opacity: 1;
}

.cta-card-button .whatsapp-icon {
    width: 20px;
    height: 20px;
}

.cta-card-button .phone-icon {
    width: 20px;
    height: 20px;
}

/* Container dos botões do CTA card */
.cta-card-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Botão de telefone no CTA card */
.cta-card-button-phone {
    background: linear-gradient(135deg, #16A085 0%, #138D75 50%, #117A65 100%);
    box-shadow: 0 4px 20px rgba(22, 160, 133, 0.3);
    padding: 16px 40px;
    min-width: 200px;
}

.cta-card-button-phone:hover {
    background: linear-gradient(135deg, #138D75 0%, #117A65 100%);
    box-shadow: 0 8px 32px rgba(22, 160, 133, 0.5);
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .availability-features {
        max-width: 600px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .availability-features .feature-item {
        flex: none;
        min-width: auto;
    }
}

/* Menu Mobile */
@media (max-width: 768px) {
    .hero-badge {
        font-size: 13px;
        padding: 7px 14px;
        gap: 7px;
        margin-bottom: 20px;
        margin-top: 40px;
    }
    
    .hero-title {
        font-size: 39px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 16px 34px;
        font-size: 15px;
        min-width: 180px;
    }
    
    .cta-buttons {
        justify-content: center;
        gap: 12px;
    }
    
    .cta-button-phone {
        padding: 16px 40px;
        min-width: 200px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 60px 0 50px 0;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .hero-img {
        width: 100%;
        height: 300px;
        transform: scale(1.15) translateY(-20px) !important;
    }
    
    .availability-content {
        margin-bottom: 40px;
    }
    
    .availability-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .availability-features .feature-item {
        flex: none;
        min-width: auto;
    }
    
    .feature-item {
        padding: 12px 16px;
    }
    
    .availability-title {
        font-size: 28px;
    }
    
    .availability-subtitle {
        font-size: 24px;
    }
    
    .availability-card {
        padding: 30px 20px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-subtitle {
        font-size: 16px;
    }
    
    .card-button {
        padding: 14px 29px;
        font-size: 14px;
        min-width: 160px;
    }
    
    .card-buttons {
        gap: 10px;
    }
    
    .card-button-phone {
        padding: 14px 35px;
        min-width: 180px;
    }
    
    .specialists-section {
        padding: 80px 0;
    }
    
    .specialists-title {
        font-size: 32px;
    }
    
    .specialists-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        max-width: 100%;
    }
    
    .specialist-card {
        padding: 30px 20px;
    }
    
    .specialist-card .card-title {
        font-size: 20px;
    }
    
    .specialist-card .card-description {
        font-size: 14px;
    }
    
    .services-section {
        padding: 80px 0;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .services-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .service-text {
        font-size: 14px;
    }
    
    .services-cta-card {
        padding: 30px 20px;
    }
    
    .cta-card-title {
        font-size: 20px;
    }
    
    .cta-card-subtitle {
        font-size: 16px;
    }
    
    .cta-card-button {
        padding: 14px 29px;
        font-size: 14px;
        min-width: 160px;
    }
    
    .cta-card-buttons {
        gap: 10px;
    }
    
    .cta-card-button-phone {
        padding: 14px 35px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
        gap: 5px;
        margin-bottom: 16px;
        margin-top: 45px;
    }
    
    .hero-title {
        font-size: 35px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 14px 29px;
        font-size: 14px;
        min-width: 150px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .cta-button-phone {
        padding: 14px 35px;
        min-width: 170px;
    }
    
    .hero-img {
        width: 100%;
        height: 250px;
        transform: scale(1.15) translateY(-25px) !important;
    }
    
    .availability-section {
        padding: 60px 0;
    }
    
    .availability-title {
        font-size: 24px;
    }
    
    .availability-subtitle {
        font-size: 20px;
    }
    
    .availability-description {
        font-size: 14px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-subtitle {
        font-size: 14px;
    }
    
    .specialists-section {
        padding: 60px 0;
    }
    
    .specialists-title {
        font-size: 28px;
    }
    
    .specialists-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .specialist-card {
        padding: 25px 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .specialist-card .card-title {
        font-size: 18px;
    }
    
    .specialist-card .card-description {
        font-size: 13px;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .services-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .service-item {
        padding: 12px;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
    }
    
    .service-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .service-text {
        font-size: 13px;
    }
    
    .services-cta-card {
        padding: 25px 15px;
    }
    
    .cta-card-title {
        font-size: 18px;
    }
    
    .cta-card-subtitle {
        font-size: 14px;
    }
    
    .card-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .card-button-phone {
        padding: 12px 30px;
        min-width: 160px;
    }
    
    .cta-card-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .cta-card-button-phone {
        padding: 12px 30px;
        min-width: 160px;
    }
}

/* Telas muito pequenas */
@media (max-width: 360px) {
    .hero-badge {
        font-size: 10px;
        padding: 4px 8px;
        gap: 4px;
        margin-bottom: 12px;
        margin-top: 50px;
    }
    
    .badge-text {
        white-space: nowrap;
    }
}

/* Rodapé */
.footer {
    background: #1a365d;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00BFFF;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Responsividade do Rodapé */
@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-separator {
        display: none;
    }
}



/* Estados adicionais */

.mobile-device .cta-button:hover {
    transform: none;
}

.loaded {
    opacity: 1;
} 