/*
Theme Name: Feminina Terapia
Theme URI: https://femininaterapia.com.br
Author: Feminina Terapia
Author URI: https://femininaterapia.com.br
Description: Tema exclusivo para Feminina Terapia - Psicoterapia especializada no bem-estar feminino
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: feminina-terapia
Tags: one-column, custom-colors, custom-menu, featured-images, full-width-template
*/

/* ==========================================================================
   Reset e Base
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Feminina Terapia - Soft Rose Quartz Theme */
    --background: hsl(30, 50%, 99%);
    --foreground: hsl(20, 25%, 20%);
    
    --card: hsl(30, 40%, 98%);
    --card-foreground: hsl(20, 25%, 20%);
    
    --primary: hsl(350, 45%, 65%);
    --primary-foreground: hsl(30, 50%, 99%);
    
    --secondary: hsl(30, 35%, 95%);
    --secondary-foreground: hsl(20, 25%, 25%);
    
    --muted: hsl(30, 25%, 94%);
    --muted-foreground: hsl(20, 15%, 45%);
    
    --accent: hsl(38, 60%, 70%);
    --accent-foreground: hsl(20, 25%, 15%);
    
    --border: hsl(30, 25%, 90%);
    
    /* Custom Colors */
    --rose-quartz: hsl(350, 45%, 90%);
    --rose-quartz-dark: hsl(350, 35%, 75%);
    --warm-cream: hsl(35, 45%, 96%);
    --soft-gold: hsl(38, 55%, 65%);
    --terracotta: hsl(15, 50%, 55%);
    --sage: hsl(150, 20%, 75%);
    --deep-rose: hsl(350, 40%, 50%);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(30, 50%, 99%) 0%, hsl(350, 45%, 96%) 50%, hsl(35, 45%, 97%) 100%);
    --gradient-rose: linear-gradient(180deg, hsl(350, 45%, 95%) 0%, hsl(30, 50%, 99%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(30, 40%, 99%) 0%, hsl(350, 35%, 97%) 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -4px hsla(350, 45%, 65%, 0.15);
    --shadow-glow: 0 0 30px hsla(350, 45%, 75%, 0.3);
    --shadow-card: 0 8px 30px -8px hsla(20, 25%, 20%, 0.08);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    
    /* Border Radius */
    --radius: 0.75rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ==========================================================================
   Utilities
   ========================================================================== */

.gradient-hero {
    background: var(--gradient-hero);
}

.gradient-rose {
    background: var(--gradient-rose);
}

.gradient-card {
    background: var(--gradient-card);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.shadow-card {
    box-shadow: var(--shadow-card);
}

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--muted-foreground);
}

.italic {
    font-style: italic;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes pulseSoft {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px hsla(350, 45%, 65%, 0.3);
    }
    50% {
        box-shadow: 0 0 40px hsla(350, 45%, 65%, 0.5);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
    animation: floatSlow 8s ease-in-out infinite;
}

.animate-pulse-soft {
    animation: pulseSoft 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-700 { animation-delay: 0.7s; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: hsla(30, 50%, 99%, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 0;
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--foreground);
}

.site-logo svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.site-logo:hover svg {
    transform: scale(1.1);
}

.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.main-nav a {
    color: var(--muted-foreground);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn svg {
    width: 1rem;
    height: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.btn-primary:hover {
    background-color: var(--deep-rose);
}

.btn-hero {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    font-weight: 600;
    letter-spacing: 0.025em;
    animation: pulseSoft 3s ease-in-out infinite;
}

.btn-hero:hover {
    background-color: var(--deep-rose);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    animation: none;
}

.btn-whatsapp {
    background-color: hsl(145, 63%, 42%);
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.btn-whatsapp:hover {
    background-color: hsl(145, 63%, 38%);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.btn-sm {
    height: 2.25rem;
    padding: 0 0.75rem;
    border-radius: calc(var(--radius) - 2px);
}

.btn-lg {
    height: 2.75rem;
    padding: 0 2rem;
}

.btn-xl {
    height: 3.5rem;
    padding: 0 2.5rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

/* Floating petals */
.floating-petal {
    position: absolute;
    opacity: 0.2;
    animation: floatSlow 8s ease-in-out infinite;
}

.floating-petal svg {
    width: 100%;
    height: 100%;
    fill: var(--primary);
}

.petal-1 { top: 5rem; left: 2.5rem; width: 4rem; height: 4rem; animation-delay: 0s; }
.petal-2 { top: 10rem; right: 5rem; width: 3rem; height: 3rem; animation-delay: 1s; }
.petal-3 { bottom: 10rem; left: 25%; width: 5rem; height: 5rem; animation-delay: 2s; }
.petal-4 { top: 33%; right: 25%; width: 3.5rem; height: 3.5rem; animation-delay: 3s; }
.petal-5 { bottom: 5rem; right: 2.5rem; width: 2.5rem; height: 2.5rem; animation-delay: 0.5s; }

/* Decorative circles */
.hero-circle-1 {
    position: absolute;
    top: 5rem;
    right: 2.5rem;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background-color: hsla(350, 45%, 90%, 0.3);
    filter: blur(48px);
}

.hero-circle-2 {
    position: absolute;
    bottom: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background-color: hsla(38, 55%, 65%, 0.2);
    filter: blur(48px);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    padding: 5rem 1rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: hsla(350, 45%, 90%, 0.5);
    color: hsla(20, 25%, 20%, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--soft-gold);
}

.hero-section h1 {
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-section h1 {
        font-size: 3.75rem;
    }
}

.hero-section h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: hsla(20, 25%, 20%, 0.8);
    line-height: 1.3;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

@media (min-width: 768px) {
    .hero-section h2 {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .hero-section h2 {
        font-size: 2.25rem;
    }
}

.hero-paragraphs {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-paragraphs p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-paragraphs p {
        font-size: 1.25rem;
    }
}

.hero-paragraphs strong {
    color: var(--foreground);
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.7s;
}

.hero-cta .btn svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.hero-cta .btn:hover svg {
    transform: scale(1.1);
}

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    fill: var(--background);
}

/* ==========================================================================
   Identification Section
   ========================================================================== */

.identification-section {
    padding: 6rem 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.identification-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, hsla(350, 45%, 90%, 0.1), transparent);
}

.identification-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
}

.identification-section h2 {
    font-size: 1.875rem;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .identification-section h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .identification-section h2 {
        font-size: 3rem;
    }
}

.identification-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.identification-intro p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.identification-cards {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .identification-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.identification-card {
    background: var(--gradient-card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.5s ease;
}

.identification-card:hover {
    box-shadow: var(--shadow-soft);
}

.identification-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.identification-card-icon.primary {
    background-color: hsla(350, 45%, 65%, 0.1);
}

.identification-card:hover .identification-card-icon.primary {
    background-color: hsla(350, 45%, 65%, 0.2);
}

.identification-card-icon.gold {
    background-color: hsla(38, 55%, 65%, 0.2);
}

.identification-card:hover .identification-card-icon.gold {
    background-color: hsla(38, 55%, 65%, 0.3);
}

.identification-card-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.identification-card-icon.primary svg {
    color: var(--primary);
}

.identification-card-icon.gold svg {
    color: var(--soft-gold);
}

.identification-card h3 {
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.identification-card p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Therapy Groups Section
   ========================================================================== */

.therapy-groups-section {
    padding: 6rem 0;
    background: var(--gradient-rose);
    position: relative;
    overflow: hidden;
}

.therapy-groups-decor-1 {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: hsla(38, 55%, 65%, 0.1);
    filter: blur(32px);
}

.therapy-groups-decor-2 {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background-color: hsla(350, 45%, 65%, 0.1);
    filter: blur(48px);
}

.therapy-groups-header {
    text-align: center;
    margin-bottom: 4rem;
}

.therapy-groups-header h2 {
    font-size: 1.875rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .therapy-groups-header h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .therapy-groups-header h2 {
        font-size: 3rem;
    }
}

.therapy-groups-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

.therapy-groups-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .therapy-groups-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.therapy-group-card {
    background-color: hsla(30, 50%, 99%, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid hsla(30, 25%, 90%, 0.5);
    transition: all 0.5s ease;
}

.therapy-group-card:hover {
    box-shadow: var(--shadow-soft);
}

.therapy-group-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background-color 0.3s ease;
}

.therapy-group-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.therapy-group-icon.primary {
    background-color: hsla(350, 45%, 65%, 0.1);
}
.therapy-group-card:hover .therapy-group-icon.primary {
    background-color: hsla(350, 45%, 65%, 0.2);
}
.therapy-group-icon.primary svg {
    color: var(--primary);
}

.therapy-group-icon.terracotta {
    background-color: hsla(15, 50%, 55%, 0.1);
}
.therapy-group-card:hover .therapy-group-icon.terracotta {
    background-color: hsla(15, 50%, 55%, 0.2);
}
.therapy-group-icon.terracotta svg {
    color: var(--terracotta);
}

.therapy-group-icon.sage {
    background-color: hsla(150, 20%, 75%, 0.3);
}
.therapy-group-card:hover .therapy-group-icon.sage {
    background-color: hsla(150, 20%, 75%, 0.4);
}
.therapy-group-icon.sage svg {
    color: hsla(20, 25%, 20%, 0.7);
}

.therapy-group-icon.gold {
    background-color: hsla(38, 55%, 65%, 0.2);
}
.therapy-group-card:hover .therapy-group-icon.gold {
    background-color: hsla(38, 55%, 65%, 0.3);
}
.therapy-group-icon.gold svg {
    color: var(--soft-gold);
}

.therapy-group-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.therapy-group-list {
    list-style: none;
}

.therapy-group-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.therapy-group-list li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: var(--soft-gold);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Transformation Section
   ========================================================================== */

.transformation-section {
    padding: 6rem 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.transformation-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, hsla(350, 45%, 90%, 0.05), transparent);
}

.transformation-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.transformation-header h2 {
    font-size: 1.875rem;
    color: var(--foreground);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .transformation-header h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .transformation-header h2 {
        font-size: 3rem;
    }
}

.transformation-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.transformation-cards {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .transformation-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.transformation-card {
    background: var(--gradient-card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid hsla(30, 25%, 90%, 0.3);
    height: 100%;
}

.transformation-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.transformation-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transformation-card-icon.primary {
    background-color: hsla(350, 45%, 65%, 0.1);
}

.transformation-card-icon.primary svg {
    color: var(--primary);
}

.transformation-card-icon.gold {
    background-color: hsla(38, 55%, 65%, 0.2);
}

.transformation-card-icon.gold svg {
    color: var(--soft-gold);
}

.transformation-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.transformation-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.badge-before {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: hsla(350, 45%, 90%, 0.5);
}

.badge-after {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: hsla(38, 55%, 65%, 0.3);
    color: var(--foreground);
}

.transformation-card h3 {
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 1.25rem;
}

.transformation-card p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.transformation-card p strong {
    color: var(--foreground);
}

.transformation-card .highlight-primary {
    color: hsla(350, 45%, 65%, 0.8);
    font-style: italic;
}

.transformation-card .highlight-gold {
    color: var(--soft-gold);
    font-style: italic;
}

/* ==========================================================================
   Authority Section
   ========================================================================== */

.authority-section {
    padding: 6rem 0;
    background: var(--gradient-rose);
    position: relative;
    overflow: hidden;
}

.authority-decor-1 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background-color: hsla(38, 55%, 65%, 0.1);
    filter: blur(48px);
    transform: translateY(-50%);
}

.authority-decor-2 {
    position: absolute;
    top: 5rem;
    right: 5rem;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background-color: hsla(350, 45%, 65%, 0.1);
    filter: blur(32px);
}

.authority-content {
    max-width: 64rem;
    margin: 0 auto;
}

.authority-header {
    text-align: center;
    margin-bottom: 4rem;
}

.authority-header h2 {
    font-size: 1.875rem;
    color: var(--foreground);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .authority-header h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .authority-header h2 {
        font-size: 3rem;
    }
}

.authority-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    max-width: 48rem;
    margin: 0 auto 1.5rem;
}

.authority-card {
    background-color: hsla(30, 50%, 99%, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid hsla(30, 25%, 90%, 0.3);
}

@media (min-width: 768px) {
    .authority-card {
        padding: 3rem;
    }
}

.authority-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.authority-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background-color: hsla(38, 55%, 65%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.authority-card-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--soft-gold);
}

.authority-card h3 {
    font-size: 1.5rem;
    color: var(--foreground);
}

.authority-features {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .authority-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.authority-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.authority-feature-icon.primary {
    background-color: hsla(350, 45%, 65%, 0.1);
}
.authority-feature-icon.primary svg {
    color: var(--primary);
}

.authority-feature-icon.terracotta {
    background-color: hsla(15, 50%, 55%, 0.1);
}
.authority-feature-icon.terracotta svg {
    color: var(--terracotta);
}

.authority-feature-icon.gold {
    background-color: hsla(38, 55%, 65%, 0.2);
}
.authority-feature-icon.gold svg {
    color: var(--soft-gold);
}

.authority-feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.authority-features p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    padding: 6rem 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50rem;
    height: 25rem;
    background: linear-gradient(to bottom, hsla(350, 45%, 90%, 0.2), transparent);
    border-radius: 9999px;
    filter: blur(48px);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: hsla(38, 55%, 65%, 0.2);
    color: hsla(20, 25%, 20%, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.cta-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--soft-gold);
}

.cta-section h2 {
    font-size: 1.875rem;
    color: var(--foreground);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-section h2 {
        font-size: 3rem;
    }
}

.cta-paragraphs {
    margin-bottom: 3rem;
}

.cta-paragraphs p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.cta-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-trust-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--soft-gold);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: var(--foreground);
    color: var(--primary-foreground);
    padding: 4rem 0;
}

.footer-content {
    max-width: 64rem;
    margin: 0 auto;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.footer-logo span {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 500;
}

.footer-logo-section p {
    color: hsla(30, 50%, 99%, 0.7);
    max-width: 28rem;
    margin: 0 auto;
}

.footer-contacts {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-contacts {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-contact {
    text-align: center;
}

.footer-contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: hsla(350, 45%, 65%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.footer-contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.footer-contact h4 {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.footer-contact a,
.footer-contact p {
    color: hsla(30, 50%, 99%, 0.7);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-divider {
    border-top: 1px solid hsla(30, 50%, 99%, 0.1);
    padding-top: 2rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-info {
        flex-direction: row;
    }
}

.footer-professional {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-professional {
        text-align: left;
    }
}

.footer-professional p {
    font-size: 0.875rem;
    color: hsla(30, 50%, 99%, 0.7);
}

.footer-professional strong {
    color: var(--primary-foreground);
}

.footer-security {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsla(30, 50%, 99%, 0.6);
}

.footer-security svg {
    width: 1rem;
    height: 1rem;
    color: var(--soft-gold);
}

.footer-copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid hsla(30, 50%, 99%, 0.1);
}

.footer-copyright p {
    font-size: 0.875rem;
    color: hsla(30, 50%, 99%, 0.5);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */

.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: hsl(145, 63%, 42%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    background-color: hsl(145, 63%, 38%);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    transform: scale(1.05);
}

.floating-whatsapp svg {
    width: 1.5rem;
    height: 1.5rem;
}

.floating-whatsapp span {
    font-weight: 500;
    display: none;
}

@media (min-width: 640px) {
    .floating-whatsapp span {
        display: inline;
    }
}

.floating-whatsapp-ping {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -0.25rem;
    margin-right: -0.25rem;
}

.floating-whatsapp-ping .ping {
    position: absolute;
    display: inline-flex;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: white;
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.floating-whatsapp-ping .dot {
    position: relative;
    display: inline-flex;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: white;
}

/* ==========================================================================
   Scroll Reveal Animation
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
