/* Reset e Configurações Globais */
:root {
    --color-dark: #1a1817;
    --color-white: #ffffff;
    --color-blue: #001f3f;
    --color-gold: #c9a227;
    --color-gold-light: #e0b33d;
    --color-gold-dark: #b08a1f;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.2);
    --shadow-gold: 0 0 30px rgba(201,162,39,0.3);
    --header-bg: #ffffff;
    --header-text: #1a1817;
    --header-border: rgba(26, 24, 23, 0.08);
    --header-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --header-toggler-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 24, 23, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Tema Escuro/Claro */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #1a1817;
    --text-secondary: #6c757d;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --header-bg: #ffffff;
    --header-text: #1a1817;
    --header-border: rgba(26, 24, 23, 0.08);
    --header-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --header-toggler-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 24, 23, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-theme="dark"] {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --card-bg: #1a1a1a;
    --border-color: #2a2a2a;
    --header-bg: #000000;
    --header-text: #ffffff;
    --header-border: rgba(255, 255, 255, 0.1);
    --header-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
    --header-toggler-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Header e Navegação */
#header .site-navbar {
    --bs-navbar-color: var(--header-text);
    --bs-navbar-hover-color: var(--color-gold);
    --bs-navbar-active-color: var(--color-gold);
    --bs-navbar-toggler-border-color: var(--header-border);
    --bs-navbar-toggler-icon-bg: var(--header-toggler-icon);
    background: var(--header-bg);
    padding: 1rem 0;
    transition: var(--transition-smooth);
    box-shadow: var(--header-shadow);
    border-bottom: 1px solid var(--header-border);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.site-logo {
    display: block;
    width: auto;
    opacity: 1;
    max-width: 170px;
    height: auto;
    transition: opacity 0.25s ease, filter 0.25s ease;
}

.site-logo.is-changing {
    opacity: 0;
}

.brand-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.brand-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
    z-index: 1;
}

.brand-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-gold), transparent);
    opacity: 0.6;
    animation: ripple 1.5s infinite;
}

.brand-text span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--color-gold), var(--color-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#header .nav-link {
    position: relative;
    color: var(--header-text) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: var(--transition-smooth);
}

#header .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-blue));
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

#header .nav-link:hover::after,
#header .nav-link.active::after {
    width: 100%;
}

#header .navbar-toggler {
    border-color: var(--header-border);
    transition: var(--transition-smooth);
}

#header .navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(201, 162, 39, 0.25);
}

.btn-theme-toggle {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-theme-toggle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

/* Slider Section */
.slider-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    top: 140px;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: radial-gradient(circle, var(--color-gold), transparent);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.15;
    animation: float 20s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 30%;
    animation-delay: 15s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 15%;
    animation-delay: 7s;
}

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

.hero-swiper {
    width: 100%;
    height: 100%;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.slide-content {
    text-align: center;
    color: var(--color-white);
    z-index: 2;
    margin-top: -100px;
}

.slide-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201,162,39,0.2);
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}


.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}
.swiper-button-next{
 color: #b08a1f !important;
}
.swiper-button-prev{
 color: #b08a1f !important;
}

.btn-gold, .btn-outline-gold {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    box-shadow: 0 5px 15px rgba(201,162,39,0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,162,39,0.4);
    color: var(--color-white);
}

.btn-outline-gold {
    border: 2px solid var(--color-gold);
    color: var(--color-white);
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    transform: translateY(-3px);
    color: var(--color-white);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    color: var(--color-white);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-white);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--color-white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Internal Pages */
.page-hero {
    position: relative;
    min-height: 620px;
    padding: 190px 0 100px;
    background: linear-gradient(135deg, var(--color-blue), #000814);
    color: var(--color-white);
    overflow: hidden;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.page-hero p {
    max-width: 620px;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
}
.page-hero-about{
    background-image: url('../../imagens/sobre/banner-sobre.jpg');background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero-services{
     background-image: url('../../imagens/servicos/banner-servicos.jpg');background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero-services-individual{
     background-image: url('../../imagens/terapia-individual/banner-terapia-individual.jpg');background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero-services-online{
     background-image: url('../../imagens/terapia-online/banner-terapia-online.jpg');background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero-services-sexualidade{
     background-image: url('../../imagens/sexualidade-feminina/banner-sexualidade-feminina.jpg');background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero-services-musicoterapia{
     background-image: url('../../imagens/musicoterapia/banner-musico-terapia.jpg');background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero-contact{
     background-image: url('../../imagens/contato/banner-contato.jpg');background-size: cover; background-position: center; background-repeat: no-repeat;
}


.image-placeholder {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 320px;
    border: 2px dashed var(--color-gold);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201,162,39,0.12), rgba(0,31,63,0.12));
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.page-hero .image-placeholder {
    color: var(--color-white);
    background: linear-gradient(135deg, rgba(201,162,39,0.22), rgba(255,255,255,0.08));
}

.image-placeholder span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--card-bg);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-sm);
}

.page-hero .image-placeholder span {
    background: rgba(255,255,255,0.12);
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.18);
}

.placeholder-hero {
    aspect-ratio: 12 / 5;
    min-height: 280px;
}

.placeholder-about {
    aspect-ratio: 6 / 5;
}

.placeholder-approach {
    aspect-ratio: 1 / 1;
    min-height: 360px;
}

.about-page-section,
.approach-section {
    padding: 110px 0;
}

.value-card {
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page-section {
    padding: 110px 0;
}

.contact-hero-card,
.contact-info-panel,
.contact-form,
.map-wrapper {
    position: relative;
    z-index: 1;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.contact-hero-card {
    padding: 35px;
    color: var(--text-primary);
}

.contact-hero-card h3 {
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-hero-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-info-panel {
    height: 100%;
    padding: 30px;
}

aside.contact-info-panel {
    padding: 36px;
    border: 1px solid rgba(212, 165, 116, 0.22);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(26, 24, 23, 0.08);
    overflow: hidden;
}

aside.contact-info-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 36px;
    right: 36px;
    height: 3px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 0 0 999px 999px;
}

aside.contact-info-panel h3 {
    color: var(--text-primary);
    font-weight: 700;
}

aside.contact-info-panel .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

aside.contact-info-panel .footer-links a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    min-height: 58px;
    width: 100%;
    margin: 0 !important;
    padding: 16px 20px;
    border: 1px solid rgba(26, 24, 23, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-primary);
    font-weight: 700;
    text-align: left !important;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(26, 24, 23, 0.04);
    transition: var(--transition-smooth);
}

aside.contact-info-panel .footer-links a::before {
    content: "";
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 0;
    width: 3px;
    background: var(--color-gold);
    border-radius: 0 999px 999px 0;
    opacity: 0;
    transition: var(--transition-smooth);
}

aside.contact-info-panel .footer-links a:hover {
    display: flex;
    color: var(--color-gold);
    transform: translateX(4px);
    border-color: rgba(212, 165, 116, 0.35);
    box-shadow: 0 14px 30px rgba(26, 24, 23, 0.08);
}

aside.contact-info-panel .footer-links a:hover::before {
    opacity: 1;
}

aside.contact-info-panel .footer-links .btn-cta-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 16px 34px rgba(201, 162, 39, 0.24);
}

aside.contact-info-panel .footer-links .btn-cta-primary i,
aside.contact-info-panel .footer-links .btn-cta-primary span {
    color: var(--color-white);
}

aside.contact-info-panel .footer-links .btn-cta-primary::before {
    background: rgba(255, 255, 255, 0.72);
    opacity: 1;
}

aside.contact-info-panel .footer-links .btn-cta-primary:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(201, 162, 39, 0.32);
}

.contact-info-item {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-item small {
    display: block;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-form {
    height: 100%;
    padding: 35px;
}

.contact-form label {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-smooth);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.18);
}

.contact-form textarea {
    resize: vertical;
}

.contact-submit {
    border: none;
    margin: 0;
}

.contact-submit:disabled {
    cursor: not-allowed;
    opacity: 0.75;
    transform: none;
}

.contact-form-message {
    display: none;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-message.is-visible {
    display: block;
}

.contact-form-message.is-success {
    color: var(--text-primary);
    background: rgba(201, 162, 39, 0.14);
    border: 1px solid rgba(201, 162, 39, 0.45);
}

.contact-form-message.is-error {
    color: var(--text-primary);
    background: rgba(220, 53, 69, 0.12);
    border: 1px solid rgba(220, 53, 69, 0.42);
}

.map-section {
    padding: 100px 0;
}

.map-wrapper {
    overflow: hidden;
    min-height: 400px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

/* About Section */
.about-section-home {
    position: relative;
    padding: 250px 0px 100px 0px;
    overflow: hidden;
}
.about-section {
    position: relative;
    padding: 100px 0px 100px 0px;
    overflow: hidden;
}


.parallax-bg-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(201,162,39,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-blue));
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 15px;
}

.glow-text {
    color: var(--color-gold);
    text-shadow: 0 0 20px rgba(201,162,39,0.5);
    position: relative;
    display: inline-block;
}

.magic-divider {
    text-align: center;
    margin: 20px 0;
}

.magic-divider span {
    font-size: 1.5rem;
    color: var(--color-gold);
    animation: rotate 4s linear infinite;
    display: inline-block;
}

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

.about-image-wrapper {
    position: relative;
}

.about-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-gold), transparent);
    filter: blur(30px);
    opacity: 0.3;
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(0,31,63,0.2));
}

.floating-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
}

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

.exp-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-white);
}

.exp-text {
    font-size: 0.8rem;
    color: var(--color-white);
}

.floating-cards {
    position: absolute;
    background: var(--card-bg);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    animation: floatCard 3s infinite;
}

.card-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    right: -30px;
    animation-delay: 1.5s;
}

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

.floating-cards i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.qual-item {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

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

.qual-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.qual-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.stat-circle {
    position: relative;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-gold);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Services Section com Cards 3D */
.services-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--color-gold) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

.service-card-3d {
    position: relative;
    width: 100%;
    height: 400px;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.8s;
}

.service-card-3d:hover {
    transform: rotateY(180deg);
}

.service-front, .service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--card-bg);
    box-shadow: var(--shadow-md);
}

.service-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
}

.service-back i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-back ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-back li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-back li i {
    font-size: 1rem;
    margin: 0;
}

.btn-service {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-white);
    color: var(--color-gold);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition-smooth);
}

.btn-service:hover {
    transform: scale(1.05);
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
    animation: pulseScale 2s infinite;
}

@keyframes pulseScale {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.service-icon-wrapper i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--color-white);
    z-index: 1;
}

.service-hover-trigger {
    margin-top: 20px;
    color: var(--color-gold);
    font-weight: 600;
    transition: var(--transition-smooth);
}

/* Welcome Phrases Section */
.welcome-phrases-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.section-subtitle {
    max-width: 720px;
    margin: 18px auto 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    padding-bottom: 50px;
}

.welcome-phrases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 55px;
}

.welcome-phrase-card {
    position: relative;
    min-height: 190px;
    display: flex;
    align-items: center;
    padding: 34px;
    background: #ffffff;
    border: 1px solid rgba(212, 165, 116, 0.22);
    border-radius: 20px;
    box-shadow: 0 14px 35px rgba(26, 24, 23, 0.07);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.welcome-phrase-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    width: 52px;
    height: 3px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-blue));
    border-radius: 0 0 999px 999px;
}

.welcome-phrase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 165, 116, 0.45);
    box-shadow: 0 22px 45px rgba(26, 24, 23, 0.11);
}

.welcome-phrase-card p {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.02rem;
    line-height: 1.75;
}

/* Testimonials Section Avançado */
.testimonials-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.testimonial-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tshape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-gold), transparent);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    animation: floatSlow 15s infinite;
}

.tshape-1 {
    top: 10%;
    left: -50px;
}

.tshape-2 {
    bottom: 10%;
    right: -50px;
    animation-delay: 7s;
}

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

.testimonial-swiper-advanced {
    padding: 20px 0px 60px 0px;
}

.testimonial-card-advanced {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(212, 165, 116, 0.16);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.testimonial-card-advanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.testimonial-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--color-gold), transparent);
    opacity: 0.1;
    border-radius: 50%;
}

.quote-mark {
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Playfair Display', serif;
}

.testimonial-rating {
    margin-bottom: 20px;
    color: #ffc107;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-info h5 {
    margin-bottom: 4px;
    color: var(--text-primary);
    font-weight: 700;
}

.testimonial-author-info span {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.testimonial-decoration {
    position: absolute;
    bottom: 20px;
    right: 30px;
    display: flex;
    gap: 5px;
}

.testimonial-decoration i {
    font-size: 0.5rem;
    color: var(--color-gold);
}

/* CTA Section com Partículas */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-blue), #000814);
    color: var(--color-white);
    overflow: hidden;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201,162,39,0.2);
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-gold), transparent);
    filter: blur(50px);
    opacity: 0.3;
    animation: pulseGlow 3s infinite;
}

.btn-cta-primary, .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    margin: 10px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201,162,39,0.4);
    color: var(--color-white);
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-cta-secondary:hover {
    background: var(--color-white);
    color: var(--color-blue);
    transform: translateY(-3px);
}

.contact-info-glass {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.3rem;
}

.info-text small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.info-text h4 {
    font-size: 1.1rem;
    margin: 0;
}

.social-links-glow {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links-glow a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.3rem;
    transition: var(--transition-smooth);
    position: relative;
    text-decoration: none;
}

.social-links-glow a:hover {
    background: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(201,162,39,0.6);
}

/* Footer */
.footer {
    position: relative;
    background: var(--color-dark);
    color: #999;
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--color-gold) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    pointer-events: none;
}

.footer-logo {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.footer-logo img{
    max-width: 130px;
}

.footer-logo i {
    font-size: 1.8rem;
    color: var(--color-white);
}

.footer-logo-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-gold), transparent);
    opacity: 0.6;
    animation: ripple 2s infinite;
}

.footer h3 {
    color: var(--color-white);
    margin-bottom: 15px;
}

.footer h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links, .schedule {
    list-style: none;
    padding: 0;
}

.footer-links li, .schedule li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
    display: inline-block;
}

.schedule li span {
    color: var(--color-white);
    font-weight: 500;
}

.newsletter-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-wrapper input {
    flex: 1;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid #333;
    border-radius: 50px;
    color: var(--color-white);
}

.newsletter-wrapper button {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-wrapper button i {
    color: var(--color-white);
}

.newsletter-wrapper button:hover {
    transform: scale(1.1);
}

.newsletter-wrapper button:disabled {
    cursor: not-allowed;
    opacity: 0.75;
    transform: none;
}

.newsletter-message {
    display: none;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.newsletter-message.is-visible {
    display: block;
}

.newsletter-message.is-success {
    color: var(--color-white);
    background: rgba(201, 162, 39, 0.18);
    border: 1px solid rgba(201, 162, 39, 0.45);
}

.newsletter-message.is-error {
    color: var(--color-white);
    background: rgba(220, 53, 69, 0.16);
    border: 1px solid rgba(220, 53, 69, 0.45);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-credits {
    display: flex;
    gap: 20px;
}

.footer-credits a {
    color: #999;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-credits a:hover {
    color: var(--color-gold);
}

.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.footer-wave svg path {
    fill: #1a1817;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        min-height: auto;
        padding: 150px 0 70px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .about-page-section,
    .approach-section,
    .contact-page-section,
    .map-section {
        padding: 80px 0;
    }

    .contact-hero-card,
    .contact-info-panel,
    .contact-form {
        padding: 25px;
    }

    aside.contact-info-panel {
        padding: 28px;
        border-radius: 20px;
    }

    aside.contact-info-panel::before {
        left: 28px;
        right: 28px;
    }

    aside.contact-info-panel .footer-links a {
        min-height: 54px;
        padding: 14px 18px;
        border-radius: 14px;
    }

    .contact-info-item {
        flex-direction: column;
        gap: 12px;
    }

    .map-wrapper,
    .map-wrapper iframe {
        min-height: 350px;
        height: 350px;
    }

    .placeholder-hero,
    .placeholder-about,
    .placeholder-approach {
        min-height: 260px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .welcome-phrases-section,
    .testimonials-section {
        padding: 80px 0;
    }

    .welcome-phrases-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 40px;
    }

    .welcome-phrase-card {
        min-height: auto;
        padding: 28px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }
    
    .service-card-3d {
        height: 350px;
    }
    
    .contact-info-glass {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
