/* ==========================================================================
   ESTILOS BASE
   ========================================================================== */

/* Estilos para acessibilidade - navegação por teclado */
.keyboard-navigation :focus {
    outline: 3px solid #77929d !important;
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(119, 146, 157, 0.3);
    transition: outline-offset 0.1s ease;
}

/* Importação de fontes */
@font-face {
    font-family: 'Actioness';
    src: url('fonts/actioness.woff2') format('woff2'),
        url('fonts/actioness.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Century Gothic', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f7f4;
    /* Fundo off-white */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   LAYOUT PRINCIPAL
   ========================================================================== */

/* Container principal */
.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100%;
    width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

/* Hero Section - Container principal */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Altura total da viewport */
    overflow: hidden;
    /* Evitar que conteúdo ultrapasse */
    max-height: 100vh;
    /* Garantir que não ultrapasse a altura da viewport */
}

/* Background da Hero Section */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Altura total da viewport */
    background-image: url('fundo espaco nos R01.jpg');
    background-size: cover;
    /* Cobrir toda a área, sem listras */
    background-repeat: no-repeat;
    /* Evitar repetição da imagem */
    background-position: center;
    z-index: -1;
}

/* Conteúdo textual da Hero */
.hero-content {
    flex: 0 0 55%;
    padding: 60px 20px 60px 180px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(2px);
    border-radius: 0 20px 20px 0;
    z-index: -1;
}

/* Credenciais */
.credentials {
    margin-bottom: 30px;
}

.credentials h1 {
    font-family: 'Actioness', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: #a6a784;
    /* Cor principal */
    margin-bottom: 8px;
}

.credentials p {
    font-size: 1rem;
    color: #77929d;
    /* Cor secundária */
    margin-bottom: 4px;
}

/* Logo Container */
.logo-container {
    margin-bottom: 20px;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Specialty Text */
.specialty-text {
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f2027;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
}

/* Main Title */
.main-title {
    font-family: 'Actioness', sans-serif;
    font-size: 3.0rem;
    line-height: 1.2;
    color: #1a202c;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    max-width: 100%;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.accent-text {
    color: #77929d;
    font-weight: 500;
}

/* Description */
.description {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a202c;
    margin-bottom: 32px;
    max-width: 90%;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

.description strong {
    color: #4a6b75;
    font-weight: 700;
}

/* Location */
.location {
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.95rem;
    color: #77929d;
    margin-bottom: 32px;
    font-weight: 500;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #77929d, #5a7a85);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(119, 146, 157, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: whatsappPulse 2s ease-in-out infinite;
    width: fit-content;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    animation: whatsappSpin 3s linear infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1) translateY(0);
        box-shadow: 0 6px 20px rgba(119, 146, 157, 0.4);
    }

    50% {
        transform: scale(1.05) translateY(-2px);
        box-shadow: 0 10px 30px rgba(119, 146, 157, 0.6);
    }
}

@keyframes whatsappSpin {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(10deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s;
}

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

.cta-button:hover {
    background: linear-gradient(135deg, #5a7a85, #4a6b75);
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 12px 35px rgba(119, 146, 157, 0.8);
    animation: whatsappShake 0.5s ease-in-out;
}

@keyframes whatsappShake {

    0%,
    100% {
        transform: scale(1.08) translateY(-4px) rotate(0deg);
    }

    25% {
        transform: scale(1.08) translateY(-4px) rotate(1deg);
    }

    75% {
        transform: scale(1.08) translateY(-4px) rotate(-1deg);
    }
}

/* Location Info */
.location-info {
    margin-bottom: 32px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Century Gothic', sans-serif;
    font-size: 1rem;
    color: #77929d;
    font-weight: 500;
}

.location-icon {
    font-size: 1.1rem;
}

/* Features */
.features {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    color: #1e7cb4;
    /* Azul mais vibrante para o ícone */
    font-size: 1.4rem;
    line-height: 1;
    min-width: 24px;
    display: flex;
    justify-content: center;
}

.feature-text {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.05rem;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
    padding-top: 2px;
}

/* Botões CTA */
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
    /* Garantir que o z-index funcione */
    z-index: 20;
    /* Valor alto para garantir que fique acima de tudo */
}

/* Estilo base para botões */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-family: 'Century Gothic', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Botão primário - CTA principal */
.btn-primary {
    background: linear-gradient(135deg, #77929d, #5a7a85);
    color: white;
    border: none;
    padding: 20px 45px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 8px 25px rgba(119, 146, 157, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #5a7a85, #4a6b75);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(119, 146, 157, 0.5);
}

.btn-icon {
    font-size: 1.2rem;
    filter: brightness(1.2);
}

/* Botão secundário - CTA secundário */
.btn-secondary {
    background-color: transparent;
    color: #1e4b6d;
    /* Azul escuro para combinar com os títulos */
    border: 2px solid #1e4b6d;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.05rem;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: rgba(119, 146, 157, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Imagem da Hero */
.hero-image {
    flex: 0 0 50%;
    position: relative;
    overflow: visible;
}

.hero-image img {
    width: auto;
    /* Auto para manter proporção */
    height: 100vh;
    /* Exatamente a altura da viewport */
    display: block;
    position: absolute;
    top: 0;
    /* Mantendo a imagem no topo */
    right: 15%;
    object-fit: cover;
    object-position: top right;
    z-index: 1;
    margin-right: -5%;
    /* Forçar imagem para fora do container */
    pointer-events: none;
    /* Permitir cliques através da imagem */
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

/* Tablets e dispositivos menores */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        width: 100%;
        max-width: 100%;
        flex: none;
    }

    .hero-content {
        padding: 40px 20px;
        order: 1;
        /* Conteúdo de texto fica em cima */
    }

    .hero-image {
        display: none;
        /* Esconder a imagem original no mobile */
    }

    .headline h2 {
        font-size: 2.8rem;
    }

    .subheadline {
        max-width: 100%;
    }
}

/* Mobile Image */
.mobile-image {
    display: none;
}

/* Dispositivos móveis - médios */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 0 0;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .hero-content {
        padding: 5px 20px 2px 20px;
        text-align: center;
    }

    .hero-content::before {
        border-radius: 20px;
    }

    .specialty-text {
        font-size: 0.75rem;
        line-height: 1.2;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        letter-spacing: 0.3px;
        text-align: center;
    }

    .main-title {
        font-size: 2.2rem;
        line-height: 1.1;
        max-width: 100%;
        text-align: center;
    }

    .description {
        font-size: 1rem;
        line-height: 1.5;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .cta-button {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }

    .mobile-image {
        display: block;
        width: 100vw;
        margin-left: -20px;
        margin-top: -10px;
        position: relative;
    }

    .mobile-doctor-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .credentials h1 {
        font-size: 1.8rem;
    }

    .headline h2 {
        font-size: 2.4rem;
    }

    .subheadline p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }
}

/* Dispositivos móveis - pequenos */
@media (max-width: 480px) {
    .hero {
        padding: 30px 0;
    }

    .credentials h1 {
        font-size: 1.6rem;
    }

    .headline h2 {
        font-size: 2rem;
    }

    .feature-item {
        margin-bottom: 12px;
    }
}

/* 
Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

@keyframes whatsappFloatPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }
}

@keyframes whatsappFloatSpin {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappFloatShake {

    0%,
    100% {
        transform: scale(1.15) rotate(0deg);
    }

    25% {
        transform: scale(1.15) rotate(5deg);
    }

    75% {
        transform: scale(1.15) rotate(-5deg);
    }
}

/* ===
=======================================================================
   SEÇÃO CONHEÇA A DRA. LAURA
   ========================================================================== */

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(180deg,
            rgba(247, 242, 232, 0.3) 0%,
            #F7F2E8 50%,
            rgba(247, 242, 232, 0.95) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(2px);
    border-radius: 0;
    z-index: 1;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* About Title */
.about-title {
    font-family: 'Actioness', sans-serif;
    font-size: 2.8rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1a202c 0%, #77929d 50%, #a6a784 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: none;
    position: relative;
}

.mobile-break {
    display: none;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #77929d, #a6a784);
    border-radius: 2px;
}

.highlight-text {
    background: linear-gradient(135deg, #77929d 0%, #a6a784 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* About Description */
.about-description {
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #1a202c;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 769px) {
    .about-description {
        white-space: nowrap;
        font-size: 1.1rem;
    }
}

.about-description strong {
    color: #77929d;
    font-weight: 700;
}

/* Arrow Indicator */
.arrow-indicator {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.arrow-down {
    width: 30px;
    height: 30px;
    color: #77929d;
    animation: arrowBounce 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes arrowBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio padrão para evitar cortes */
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* About CTA */
.about-cta {
    margin-top: 40px;
}

.about-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #77929d, #5a7a85);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Century Gothic', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(119, 146, 157, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-button .whatsapp-icon {
    width: 18px;
    height: 18px;
}

.about-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.8s;
}

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

.about-button:hover {
    background: linear-gradient(135deg, #5a7a85, #4a6b75);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(119, 146, 157, 0.6);
}

/* ==========================================================================
   RESPONSIVIDADE - SEÇÃO ABOUT
   ========================================================================== */

/* Tablets */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 2.4rem;
    }

    .about-description {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
        position: relative;
        z-index: 10;
        margin-top: 200px;
        clear: both;
    }

    .about-container {
        padding: 0 15px;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .mobile-break {
        display: inline;
    }

    .about-description {
        font-size: 1rem;
        margin-bottom: 30px;
        white-space: normal;
        text-align: center;
        display: block;
        width: auto;
        padding: 0 20px;
    }

    .video-container {
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .about-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}