:root {
    --color-primary: #8D2A53;
    --color-primary-dark: #6e2540;
    --color-primary-light: #b05c7a;
    --color-accent: #022A4D;
    --color-text-dark: #2c3e50;
    --color-text-gray: #555555;
    --color-text-light: #ffffff;
    --color-bg-light: #fff5f6;
    --color-bg-white: #ffffff;
    --gradient-bg: linear-gradient(135deg, #FDEDDD 0%, #F6C9CE 100%);
    --shadow-soft: 0 10px 30px rgba(150, 62, 92, 0.1);
    --shadow-hover: 0 20px 40px rgba(150, 62, 92, 0.2);
    --shadow-elegant: 0 25px 50px -12px rgba(150, 62, 92, 0.15); 
    
    --font-logo: 'Dancing Script', cursive;
    --font-main: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: #355A84 ;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--color-primary);
    width: 0%;
    z-index: 2000;
    transition: width 0.1s;
}

h1, h2, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h3 {
     font-weight: 700;
     line-height: 1.2;
}

.section-title {
    font-size: 2.8rem;
    color: #8D2A53;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.text-blue {
    color: #355A84;
}

.section-title.text-primary {
    color: var(--color-primary);
}

.section-title.text-dark {
    color: #fff
}

.center-title {
    text-align: center;
    width: 100%;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-online-unique {
    min-height: calc(100vh - 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #D46A7E 0%, #91214F 100%);
    overflow: hidden;
    position: relative;
}

.container-online-unique {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-online-unique {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-col-online-unique {
    color: #fff;
    text-align: left;
}

.badge-online-unique {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.title-online-unique {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
}

.highlight-online-unique {
    color: #FFD1DC; 
    font-style: italic;
}

.desc-online-unique {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.list-online-unique {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.list-item-online-unique {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.icon-check-online-unique {
    background-color: #fff;
    color: #91214F;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.btn-online-unique {
    display: inline-block;
    background-color: #fff;
    color: #91214F;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-online-unique:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    background-color: #FFF5F6;
}

.img-col-online-unique {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-file-online-unique {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.img-decor-online-unique {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    right: -20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    z-index: 1;
}

@keyframes floatOnlineUnique {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.anim-float-online-unique {
    animation: floatOnlineUnique 4s ease-in-out infinite;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-white {
    background: linear-gradient(180deg, #FFF 0%, #FFF5F6 100%);
    padding: 8rem 0;
}

.section-white-bege {
    background: linear-gradient(180deg, #FFF 0%, #FFF5F6 100%);
    padding: 8rem 0;
}

.section-bordo {
    background: linear-gradient(180deg, #f80808 0%, #FFF5F6 100%);
    padding: 8rem 0;
}

.section-bege-white {
    background: linear-gradient(180deg, #FFF5F6 0%, #FFF 100%);
    padding: 8rem 0;
}

.section-bege {
    background: #FFF5F6;
    padding: 8rem 0;
}

.section-bg-light {
    background-color: #fcfcfc;
    padding: 8rem 0;
}

.section-gradient {
    padding: 8rem 0;
}

#abordagem {
  background: linear-gradient(180deg, #FFF5F6 0%, #FFF 100%);   
}

#faq {
    background: #FFF5F6; 
}

.section-dark {
     background: linear-gradient(0deg, #8D2A53 0%, #D46A7E 100%);
    color: var(--color-text-light);
    padding: 8rem 0;
}

.relative {
    position: relative;
}

.decorative-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.5;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #f8dce0;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #ffe5d9;
    bottom: 50px;
    right: -100px;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #F5B8BF;
    top: 20%;
    left: 10%;
}

.header {
    background: linear-gradient(90deg, #D46A7E 0%, #91214F 100%);
    backdrop-filter: blur(5px);
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    margin-right: auto;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    margin-right: 2rem;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center; /* ALINHAMENTO VERTICAL NO DESKTOP */
}

/* LINKS DO MENU (SOMENTE NO DESKTOP/NAV) EM BRANCO */
.nav-menu ul li a:not(.btn-header) {
    text-decoration: none;
    color: #FFFFFF !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.nav-menu ul li a:not(.btn-header)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s;
}

.nav-menu ul li a:not(.btn-header):hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px; 
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    text-align: center;
    font-family: Montserrat;
}

/* ESTILO DO BOTÃO DA HEADER */
.btn-header {
    background-color: #FFFFFF !important;
    color: #91214F !important; /* TEXTO VINHO DENTRO DO BOTÃO BRANCO */
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: #FFF5F6 !important;
}

.btn-primary {
    background: linear-gradient(90deg, #91214F 0%, #D46A7E 100%);
    color: var(--color-text-light);
    box-shadow: 0 10px 20px 0 rgba(150, 62, 92, 0.30);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #91214F 0%, #D46A7E 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px 0 rgba(150, 62, 92, 0.30);
}

.btn-sessao-online {
    background: #FFF5F6;
    color: #355A84;
    box-shadow: 0 10px 20px 0 rgba(150, 62, 92, 0.30);
}

.btn-sessao-online:hover {
    background: #FFF5F6;
    color: #355A84;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px 0 rgba(150, 62, 92, 0.30);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #355A84;
    color: #355A84;
}

.btn-outline:hover {
    background-color: #fff;
    color: #355A84;
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    display: block;
}

.hero-section {
    padding-top: 160px;
    padding-bottom: 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.hero-content {
    flex: 1;
    text-align: right;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    color: #355A84;
}

.hero-content .highlight {
    background: linear-gradient(90deg, #91214F 0%, #D46A7E 100%);
    color: #FFFFFF;
    padding: 0 0.3em;
    border-radius: 6px;
    display: inline-block;
    line-height: 1.2;
    box-shadow: 0 4px 10px 0 rgba(150, 62, 92, 0.20);
}
.hero-content .highlight-blue {
    background: linear-gradient(90deg, #022A4D 0%, #355A84 100%);
    color: #FFFFFF;
    padding: 0 0.3em;
    border-radius: 6px;
    display: inline-block;
    line-height: 1.2;
    box-shadow: 0 4px 10px 0 rgba(150, 62, 92, 0.20);
    
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #022A4D;
    font-weight: 500;
}

.hero-subtext {
    font-size: 1.1rem !important;
    color: var(--color-text-gray) !important;
    margin-bottom: 2.5rem !important;
    font-weight: 400 !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.hero-image-wrapper {
    flex: 0 0 450px;
    height: 600px;
    position: relative;
}

.image-frame {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #8D2A53 0%, #D46A7E 100%);
    z-index: 1;
    border-radius: 8px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

.scroll-down-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.scroll-down-btn:hover {
    background-color: var(--color-primary);
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.about-container {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.about-content {
    flex: 1;
}

.about-content p {
    font-size: 1.15rem;
    color: var(--color-text-gray);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.crp-elegant-wrapper {
    display: flex;
    align-items: center;
    margin-top: 2.5rem;
    gap: 1.5rem;
}

.crp-line {
    width: 60px;
    height: 1px;
    background-color: var(--color-primary);
}

.crp-info {
    display: flex;
    flex-direction: column;
}

.crp-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 0.5rem;
}

.crp-number-block {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.certificate-icon {
    color: var(--color-primary);
    width: 28px;
    height: 28px;
}

.crp-number {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 700;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
}

.image-backdrop {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #8D2A53 0%, #D46A7E 100%);
    border-radius: 12px;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-card-interactive {
    background: #FFFF; 
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    height: 280px; 
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
}

.process-card-interactive:hover {
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.card-inner {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    transition: all 0.4s ease;
}

.process-card-interactive:hover .card-inner {
    justify-content: flex-start; 
    padding-top: 3rem;
}

.process-number {
    font-size: 4rem;
    font-weight: 700;
    color: #355A84;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.process-card-interactive:hover .process-number {
    color: rgba(145, 33, 79, 0.1); 
    font-size: 6rem;
    top: -1rem;
    left: -1rem;
}

.process-title {
    font-size: 1.8rem;
    color: #8D2A53;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

.process-card-interactive:hover .process-title {
    color: var(--color-primary);
}

.interaction-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #355A84;     
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.process-card-interactive:hover .interaction-hint {
    opacity: 0; 
    height: 0;
    margin: 0;
    overflow: hidden;
}

.process-hidden-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-top: 0;
}

.process-card-interactive:hover .process-hidden-content {
    max-height: 200px; 
    opacity: 1;
    margin-top: 1.5rem;
}

.process-hidden-content p {
    color: var(--color-text-gray);
    font-size: 1rem;
    line-height: 1.5;
}

.centered-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.check-icon {
    color: #355A84;
    background: #FFF5F6;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.clinical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.clinical-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.clinical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(141, 42, 83, 0.1);
    border-color: rgba(141, 42, 83, 0.2);
}

.card-icon-header {
    background-color: #fceef2;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #8D2A53;
    transition: background-color 0.3s;
}

.clinical-card:hover .card-icon-header {
    background-color: #8D2A53;
    color: #fff;
}

.clinical-card h3 {
    color: #355A84;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.clinical-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-tags {
    display: flex;
    gap: 0.8rem;
}

.card-tags span {
    font-size: 0.75rem;
    background: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-category-title {
    font-size: 1.4rem;
    color: #FEF7E5;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary-light);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.9);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-question.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 1.2rem;
}

.faq-answer p {
    padding-bottom: 1.2rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-container {
    display: flex;
    align-items: flex-start;
    gap: 6rem;
}

.section-title.light {
    color: #fff;
    
}

.contact-info {
    flex: 1;
}

.contact-info p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-light);
}

.contact-detail-item strong {
    display: block;
    color: var(--color-text-light);
    margin-bottom: 0.2rem;
}

.contact-detail-item p, .contact-link {
    color: rgba(255,255,255,0.8);
    margin: 0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #fff;
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-title {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 1.2rem;
    border-radius: 8px;
    width: 100%;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s;
    resize: none; 
}

.form-group input:focus, .form-group textarea:focus {
    background: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(150, 62, 92, 0.1);
    outline: none;
}

.footer {
    background: linear-gradient(180deg, #D46A7E 0%, #91214F 100%);
    color: #fff;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
}

.brand-col {
    flex: 0 0 auto;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #FFF;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-logo-place {
    width: auto;
    max-width: 200px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo-img {
    max-width: 100%;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a, .status-item {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links i {
    width: 20px;
    text-align: center;
}

.status-dot {
    font-size: 0.6rem;
    color: #25D366;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: rgba(255,255,255,0.8);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25D366; 
}

.instagram-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-up {
    transform: translateY(30px);
}

.fade-left {
    transform: translateX(30px);
}

.fade-right {
    transform: translateX(-30px);
}

.visible {
    opacity: 1;
    transform: translate(0, 0);
}

#quem-sou .section-title { color: #8D2A53; }
#metodologia .section-title { color: #FFF; }
#publico-alvo .section-title { color: #8D2A53; }
#faq .section-title { color: #8D2A53; }
#contato .section-title { color: #ffffff; }

#quem-sou .subtitle { color: #355A84; }
#metodologia .section-header p { color: #FFE3E6; }
#publico-alvo .section-header p { color: #355A84; }
#faq .section-header p { color: #355A84; }
#faq .faq-column:first-child .faq-category-title { color: #355A84;; }
#faq .faq-column:last-child .faq-category-title { color: #355A84; }
#contato .contact-info p { color: #FFF5F6; }

/* --- NOVOS ESTILOS DE DEPOIMENTO --- */
.depoimento-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.depoimento-card {
    background: linear-gradient(to bottom, #ffffff 0%, #f9f0f3 100%);
    height: 450px;
    max-width: 570px; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 50px 60px 50px; 
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    margin-top: 30px;
}

.depoimento-card-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #a33257 0%, #cc7a93 100%);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 5;
}

.depoimento-card-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #a33257 0%, #cc7a93 100%);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.depoimento-text {
    flex: 1; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-style: italic;
    color: #888;
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 0 20px;
    z-index: 1;
    overflow-y: auto;
}

.depoimento-text::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.depoimento-profile-img-container {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #a33257;
    font-size: 1.2rem;
    z-index: 10;
}

.depoimento-author {
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 15px;
    margin-top: 10px;
}

.depoimento-separator {
    width: 90px;
    height: 1px;
    background-color: #d18fa3;
    margin: 0 auto 0 auto;
    flex-shrink: 0;
}

.depoimento-quote-icon {
    color: #e5e5e5;
    font-size: 2.5rem;
    position: absolute;
}

.depoimento-quote-left {
    top: 130px;
    left: 20px;
}

.depoimento-quote-right {
    bottom: 40px;
    right: 20px;
}

.depoimento-nav-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #2c4a63;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.depoimento-nav-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .depoimento-carousel-wrapper {
        gap: 15px;
        flex-wrap: wrap;
    }

    .depoimento-card {
        order: 1;
        padding: 60px 20px 40px 20px;
        height: auto; 
        min-height: 320px;
        margin-top: 25px;
    }

    .depoimento-nav-btn {
        order: 2;
        width: 45px;
        height: 45px;
        margin-top: 10px;
    }

    .depoimento-quote-left, .depoimento-quote-right {
        display: none;
    }

    .depoimento-text {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 10px 0;
    }

    .depoimento-author {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .depoimento-card {
        min-height: 400px;
    }
}