/* 
* Dr. Daniel Araújo - Nutrologia e Emagrecimento
* Estilos principais do site
*/

/* ===== VARIÁVEIS CSS ===== */
:root {
    /* Cores principais */
    --primary: #9F86C0;
    /* Lavanda Suave */
    --secondary: #A8B5A5;
    /* Verde Sage */
    --accent: #FF4081;
    /* Rosa Vibrante - Otimizado para Conversão */
    --professional: #6E8894;
    /* Azul Acinzentado */
    --background: #F7F3E9;
    /* Creme Suave */
    --text: #3A3A3A;
    /* Cinza Escuro */
    --alert: #D64550;
    /* Vermelho Suave */

    /* Cores funcionais */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #DDDDDD;
    --dark-gray: #555555;

    /* Gradientes modernos */
    --primary-gradient: linear-gradient(135deg, var(--primary) 0%, #B8A3D8 100%);
    --secondary-gradient: linear-gradient(135deg, var(--secondary) 0%, #C2D3C4 100%);
    --accent-gradient: linear-gradient(135deg, var(--accent) 0%, #FF6B9D 100%);
    --dark-gradient: linear-gradient(135deg, var(--professional) 0%, #72879E 100%);

    /* Sombras modernas */
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    /* Efeitos de vidro */
    --glass-background: rgba(255, 255, 255, 0.15);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-blur: blur(10px);

    /* Fontes modernas */
    --title-font: 'Poppins', 'Montserrat', sans-serif;
    --body-font: 'Inter', 'Open Sans', sans-serif;
    --accent-font: 'Playfair Display', serif;

    /* Tamanhos */
    --container-width: 1200px;
    --section-spacing: 8rem;
    /* Mais espaço entre seções */
    --element-spacing: 3rem;
    /* Mais espaço entre elementos */
    --border-radius: 12px;
    /* Bordas mais arredondadas */
    --border-radius-lg: 20px;
    /* Bordas muito arredondadas */
    --border-radius-sm: 6px;
    /* Bordas levemente arredondadas */
}

/* ===== RESET E ESTILOS BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Base font size for rem units */
}

body {
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text);
    letter-spacing: -0.02em;
    /* Tighter letter spacing for headings */
}

h1 {
    font-size: 4rem;
    /* Larger heading */
    margin-bottom: 2rem;
}

h2 {
    font-size: 3rem;
    /* Larger heading */
    margin-bottom: 1.8rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Smoother transition */
    position: relative;
}

a:hover {
    color: var(--accent);
}

/* Modern underline effect for links */
a:not(.btn):after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

a:not(.btn):hover:after {
    width: 100%;
}

ul,
ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
}

/* Modern selection styling */
::selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}

/* ===== UTILITÁRIOS ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    font-size: 2.8rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-family: var(--title-font);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 64, 129, 0.4);
}

.btn-hero {
    background: var(--accent);
    color: var(--white);
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 10px 20px rgba(255, 64, 129, 0.3);
    border-radius: var(--border-radius-lg);
}


.btn-nav {
    background: var(--primary);
    color: var(--white);
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
}

.btn-nav:hover {
    background: #8A74A8;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--accent);
    color: var(--white);
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 15px rgba(255, 64, 129, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 64, 129, 0.3);
}

.btn-cta-large {
    background: var(--accent);
    color: var(--white);
    font-size: 1.3rem;
    padding: 1.3rem 3rem;
    margin: 0.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 25px rgba(255, 64, 129, 0.3);
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 64, 129, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #1EBD5C;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large {
    background: #25D366;
    color: var(--white);
    font-size: 1.3rem;
    padding: 1.3rem 3rem;
    margin: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    background: #1EBD5C;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    background: var(--primary-gradient);
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(159, 134, 192, 0.2);
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.3;
    z-index: -1;
    transform: scale(1.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1.3);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0.3;
    }
}

/* ===== HEADER E NAVEGAÇÃO ===== */
.header {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header text styles for desktop */
.header-text {
    text-align: center;
    flex-grow: 1;
    padding: 0 2rem;
}

.doctor-name {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--title-font);
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.doctor-specialty {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--professional);
    line-height: 1.2;
}

.header.scrolled .doctor-name {
    font-size: 1.1rem;
}

.header.scrolled .doctor-specialty {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .doctor-name {
        font-size: 1rem;
    }

    .doctor-specialty {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .doctor-name {
        font-size: 0.9rem;
    }

    .doctor-specialty {
        font-size: 0.75rem;
    }
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    width: var(--mobile-touch-target, 44px);
    height: var(--mobile-touch-target, 44px);
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle span::before {
    top: -8px;
}

.mobile-menu-toggle span::after {
    top: 8px;
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

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

    .main-nav ul {
        flex-direction: column;
        padding: 2rem 1rem;
        margin: 0;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background: url('../images/simplificadas/novoHero.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    background-color: var(--primary);
    /* Fallback */
    color: var(--white);
    padding: 12rem 0 8rem;
    position: relative;
    margin-top: 0;
    overflow: hidden;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center top;
        min-height: 80vh;
        padding: 10rem 0 6rem;
    }
}

@media (max-width: 480px) {
    .hero {
        background-size: cover;
        background-position: center center;
        min-height: 70vh;
        padding: 8rem 0 4rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 34, 56, 0.3) 0%, rgba(159, 134, 192, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.headline {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.8rem;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: var(--text-shadow);
}

.subheadline {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PROBLEMS SECTION ===== */
.problems {
    padding: var(--section-spacing) 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.problem-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(159, 134, 192, 0.1);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.problem-image {
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.problem-img {
    max-width: 100%;
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .problem-img {
        height: 150px;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .problem-img {
        height: 120px;
        object-fit: contain;
    }
}

.problem-card:hover .problem-img {
    transform: scale(1.05);
}

.problem-card h3 {
    margin: 1rem 0;
    color: var(--primary);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.problem-card p {
    color: var(--text);
    line-height: 1.8;
}

.empathy-message {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(159, 134, 192, 0.08);
    border-radius: var(--border-radius-lg);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 134, 192, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===== PREVIOUS ATTEMPTS SECTION ===== */
.previous-attempts {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.attempts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.attempt-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.attempt-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.attempt-item .icon-wrapper {
    margin: 0 auto 1.5rem;
    background: var(--secondary-gradient);
}

.attempt-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

.attempts-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.empathy-text {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 2rem;
    font-weight: 500;
}

.fear-highlight {
    font-size: 1.4rem;
    color: var(--alert);
    font-weight: 600;
    padding: 1.5rem;
    background: rgba(214, 69, 80, 0.08);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--alert);
    box-shadow: 0 10px 30px rgba(214, 69, 80, 0.1);
}

/* ===== PHILOSOPHICAL PROBLEM SECTION ===== */
.philosophical-problem {
    padding: var(--section-spacing) 0;
    background: var(--dark-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.philosophical-problem .section-title {
    color: var(--white);
    margin-bottom: 3.5rem;
}

.philosophical-problem .section-title::after {
    background: var(--white);
}

.philosophical-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-box {
    margin: 3rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.quote {
    font-family: var(--accent-font);
    font-size: 2.2rem;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.philosophical-text {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* ===== GUIDE SECTION ===== */
.guide {
    padding: var(--section-spacing) 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.guide-intro {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.guide-intro-text {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text);
}

.guide-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.doctor-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
    transition: transform 0.3s ease;
}

.guide-info:hover .doctor-img {
    transform: scale(1.05);
}

.empathy-image {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.empathy-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.guide-info:hover .empathy-img {
    transform: scale(1.02);
}

.guide-info h3 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.credentials {
    color: var(--professional);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.education {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.medical-difference {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    border-top: 5px solid var(--primary);
}

.medical-difference h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.medical-difference ul {
    margin-top: 1rem;
}

.medical-difference li {
    margin-bottom: 1rem;
}

/* ===== PLAN SECTION ===== */
.plan {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.plan-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.plan-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.plan-image {
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan-img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover .plan-img {
    transform: scale(1.05);
}

.step-card .icon-wrapper {
    margin: 0.5rem auto 1rem;
    background: var(--primary-gradient);
}

.step-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.plan-difference {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(159, 134, 192, 0.1);
    border-radius: var(--border-radius);
}

.plan-difference h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.plan-difference ul {
    margin-left: 1.5rem;
}

.plan-difference li {
    margin-bottom: 0.5rem;
}

/* ===== CTA MAIN SECTION ===== */
.cta-main {
    padding: var(--section-spacing) 0;
    background: var(--primary-gradient);
    color: var(--white);
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-title {
    text-align: center;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.cta-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.contact-form,
.whatsapp-option {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.contact-form h3,
.whatsapp-option h3 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(159, 134, 192, 0.1);
}

.form-group input.error {
    border-color: var(--alert);
    box-shadow: 0 0 0 3px rgba(214, 69, 80, 0.1);
}

.error-message {
    display: block;
    color: var(--alert);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    animation: slideInDown 0.3s ease;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.form-message.error {
    background-color: rgba(214, 69, 80, 0.1);
    border: 1px solid rgba(214, 69, 80, 0.3);
    color: var(--alert);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.whatsapp-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.response-time {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: center;
}

/* ===== FAILURE VS SUCCESS SECTION ===== */
.failure-success {
    padding: var(--section-spacing) 0;
    background-color: var(--background);
}

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

.failure-column,
.success-column {
    padding: 2rem;
    border-radius: var(--border-radius);
}

.failure-column {
    background: rgba(214, 69, 80, 0.1);
}

.success-column {
    background: rgba(168, 181, 165, 0.2);
}

.failure-column h2,
.success-column h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.failure-column h2 {
    color: var(--alert);
}

.success-column h2 {
    color: var(--secondary);
}

.consequence-item,
.success-item {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.consequence-image,
.success-image {
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.consequence-img,
.success-img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.consequence-item:hover .consequence-img {
    transform: scale(1.05);
}

.success-item:hover .success-img {
    transform: scale(1.05);
}

.consequence-item i,
.success-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.consequence-item i {
    color: var(--alert);
}

.success-item i {
    color: var(--secondary);
}

.consequence-item h3,
.success-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.consequence-item h3 {
    color: var(--alert);
}

.success-item h3 {
    color: var(--secondary);
}

/* ===== ASPIRATIONAL SECTION ===== */
.aspirational {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
}

.aspirational-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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