/* ===============================================
    PRISCILA SANTOS - ASTROLOGIA TERAPÊUTICA
    CSS Otimizado - Página Elegante e Funcional
    =============================================== */

/* Reset e variáveis CSS customizadas */
:root {
    --primary-dark: #1C3C4E;
    --primary-light: #F2ECE1;
    --secondary-gray: #92A1AE;
    --accent-bronze: #BEAF96;
    --font-title: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
    --gradient-primary: linear-gradient(135deg, #1C3C4E, #2A4A5C);
    --gradient-accent: linear-gradient(135deg, #BEAF96, #D4C4A8);
    --shadow-soft: 0 10px 30px rgba(28, 60, 78, 0.1);
    --shadow-glow: 0 0 20px rgba(190, 175, 150, 0.3);
}

/* Reset universal */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--primary-dark);
    background-color: var(--primary-light);
    padding-top: 70px;
    overflow-x: hidden;
}

/* Container principal */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seções */
.section {
    padding: 30px 0;
    position: relative;
}

/* ===============================================
    NAVEGAÇÃO MELHORADA COM DROPDOWN
    =============================================== */

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    margin-left: 5px;
}

.dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(242, 236, 225, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(190, 175, 150, 0.2);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 5px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item:hover {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(190, 175, 150, 0.3);
}

.dropdown-item i {
    color: var(--accent-bronze);
    width: 20px;
    text-align: center;
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        backdrop-filter: none;
        border: none;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        padding: 0;
        min-width: auto;
    }

    .dropdown-item {
        padding: 15px 25px;
        margin: 5px 0;
        border-radius: 15px;
        background: rgba(190, 175, 150, 0.05);
        border: 1px solid rgba(190, 175, 150, 0.1);
    }

    .dropdown-item:hover {
        background: var(--gradient-accent);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(190, 175, 150, 0.3);
    }
}

.navbar {
    background: rgba(242, 236, 225, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(190, 175, 150, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
}

.navbar-logo {
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.navbar-logo img {
    width: 45px;
    height: auto;
    transition: all 0.3s ease;
}

.logo-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.navbar-logo:hover .logo-glow {
    opacity: 0.3;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(190, 175, 150, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.navbar-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.navbar-menu li {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.nav-link:hover::before {
    left: 0;
}

.navbar-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.nav-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(190, 175, 150, 0.1) 0%, transparent 50%);
}

.nav-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-star {
    position: absolute;
    color: var(--accent-bronze);
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.star-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.star-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.star-3 {
    top: 30%;
    left: 80%;
    animation-delay: 2s;
}

/* ===============================================
    HERO SECTION - Elementos Visuais Elegantes
    =============================================== */

.hero-bg-container {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.2) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(28, 60, 78, 0.7) 0%,
        rgba(28, 60, 78, 0.4) 50%,
        rgba(190, 175, 150, 0.1) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    background: rgba(190, 175, 150, 0.4);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
    box-shadow: 0 0 10px rgba(190, 175, 150, 0.3);
}

.particle-1 { width: 6px; height: 6px; top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { width: 3px; height: 3px; top: 40%; left: 80%; animation-delay: 3s; }
.particle-3 { width: 4px; height: 4px; top: 70%; left: 30%; animation-delay: 6s; }
.particle-4 { width: 2px; height: 2px; top: 80%; left: 70%; animation-delay: 9s; }
.particle-5 { width: 5px; height: 5px; top: 50%; left: 20%; animation-delay: 12s; }

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    text-align: center;
    padding: 80px 20px 0 20px;
}

.hero-text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 4;
    width: 100%;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(28, 60, 78, 0.1);
    border-radius: 20px;
    border: 2px solid var(--accent-bronze);
    box-shadow: 0 20px 60px rgba(28, 60, 78, 0.1);
    margin-top: 20px;
}

.hero-profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-profile-image {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(28, 60, 78, 0.3);
    border: 3px solid var(--accent-bronze);
    transition: all 0.4s ease;
}

.hero-profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(28, 60, 78, 0.4);
}

.profile-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    display: block;
}

.profile-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.2;
    z-index: -1;
    animation: glow 3s ease-in-out infinite;
}

.hero-visual-elements {
    position: relative;
    margin-bottom: 40px;
}

.hero-astro-elements {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 250px;
    z-index: 1;
}

.astro-symbol {
    position: absolute;
    color: rgba(190, 175, 150, 0.3);
    font-size: 2.5rem;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(190, 175, 150, 0.2));
}

.astro-moon {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.astro-star {
    top: 35%;
    right: 10%;
    animation-delay: 1.5s;
}

.astro-sun {
    bottom: 15%;
    left: 20%;
    animation-delay: 3s;
}

.logo-container {
    margin-bottom: 20px;
    background: rgba(242, 236, 225, 0.95);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(28, 60, 78, 0.2);
    border: 1px solid rgba(190, 175, 150, 0.3);
}

.logo {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.1));
}

.logo-magic-border {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 3px solid var(--accent-bronze);
    border-radius: 30px;
    background: var(--gradient-accent);
    opacity: 0.2;
    animation: glow 4s ease-in-out infinite;
    z-index: -1;
}

.hero-title {
    font-family: var(--font-title);
    color: var(--primary-light);
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    letter-spacing: -0.02em;
    word-spacing: 0.1em;
}

.title-line {
    display: block;
    margin-bottom: 12px;
}

.highlight-text {
    color: var(--accent-bronze);
    background: rgba(28, 60, 78, 0.4);
    padding: 8px 18px;
    border-radius: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    border: 1px solid rgba(190, 175, 150, 0.3);
    backdrop-filter: blur(5px);
    display: inline-block;
    margin: 0 2px;
}

.sparkle-icon {
    color: var(--accent-bronze);
    animation: sparkle 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 3px rgba(190, 175, 150, 0.5));
}

.subtitle {
    font-size: 1.4rem;
    color: var(--primary-light);
    margin-bottom: 35px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    max-width: 600px;
    line-height: 1.4;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-section {
    background: rgba(28, 60, 78, 0.15);
    padding: 35px;
    border-radius: 25px;
    border: 2px solid var(--accent-bronze);
    box-shadow: 0 20px 60px rgba(28, 60, 78, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(190, 175, 150, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.primary-cta {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 20px 45px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 35px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(190, 175, 150, 0.3);
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    font-family: var(--font-title);
}

.primary-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(190, 175, 150, 0.5);
    border: 2px solid var(--accent-bronze);
}

.hero-description {
    color: var(--primary-light);
    font-size: 1.15rem;
    margin-top: 25px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(190, 175, 150, 0.08) 0%, transparent 80%);
}

.hero-floating-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-graphic {
    position: absolute;
    opacity: 0.15;
    filter: drop-shadow(0 0 10px rgba(190, 175, 150, 0.2));
}

.graphic-1 {
    top: 25%;
    left: 8%;
    animation: float 8s ease-in-out infinite;
}

.graphic-2 {
    bottom: 25%;
    right: 8%;
    animation: float 10s ease-in-out infinite reverse;
}

.astro-svg {
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 0 5px rgba(190, 175, 150, 0.3));
}

/* ===============================================
   SERVIÇOS HARMONIZADOS
   =============================================== */

.section-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.section-pattern {
    position: absolute;
    top: 10%;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(190, 175, 150, 0.05) 0%, transparent 70%);
}

.section-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-float {
    position: absolute;
    color: var(--accent-bronze);
    opacity: 0.1;
    font-size: 1.5rem;
    animation: float 5s ease-in-out infinite;
}

.float-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.float-2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.float-3 {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.section-header-enhanced {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: block;
    text-align: center;
}

.title-icon {
    color: var(--accent-bronze);
    margin: 0 10px;
    animation: sparkle 2s ease-in-out infinite;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-gray);
    margin-bottom: 30px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.divider-line {
    height: 2px;
    width: 100px;
    background: var(--gradient-accent);
}

.divider-symbol {
    color: var(--accent-bronze);
    font-size: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.service-card.harmonized {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 2px solid var(--accent-bronze);
}

.service-card.harmonized:nth-child(1) .service-header-harmonized {
    background-image: url('../img/MapaEssencia.jpg');
}

.service-card.harmonized:nth-child(2) .service-header-harmonized {
    background-image: url('../img/DirecaoAstral.jpg');
}

.astrological-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background-image:
        radial-gradient(circle at 20% 30%, var(--accent-bronze) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--primary-dark) 1px, transparent 1px);
    pointer-events: none;
}

.service-astro-symbol {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-bronze), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    opacity: 0.1;
}

.service-header-harmonized {
    background: var(--gradient-primary);
    color: white;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-header-harmonized::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 60, 78, 0.8);
    z-index: 1;
}

.service-header-harmonized > * {
    position: relative;
    z-index: 2;
}

.service-title-section h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.service-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

.service-price-tag {
    text-align: right;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-bronze);
}

.payment-info {
    font-size: 0.8rem;
    opacity: 0.8;
}

.service-content-harmonized {
    padding: 30px;
}

.service-description {
    margin-bottom: 30px;
}

.service-description h4 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-gray);
}

.service-benefits {
    margin-bottom: 30px;
}

.service-benefits h4 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(190, 175, 150, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--accent-bronze);
}

.benefit-item i {
    color: var(--accent-bronze);
    font-size: 0.9rem;
}

.benefit-item span {
    font-size: 0.9rem;
    color: var(--secondary-gray);
}

.service-details {
    margin-bottom: 30px;
}

.service-details h4 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.detail-item, .timeline-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(242, 236, 225, 0.3);
    border-radius: 10px;
    border-left: 3px solid var(--accent-bronze);
}

.detail-icon, .timeline-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.detail-text strong, .timeline-content strong {
    color: var(--primary-dark);
    display: block;
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--secondary-gray);
    font-size: 0.9rem;
}

.service-info {
    margin-bottom: 30px;
}

.service-info h4 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(242, 236, 225, 0.3);
    border-radius: 8px;
}

.info-item i {
    color: var(--accent-bronze);
    width: 20px;
    text-align: center;
}

.info-item span {
    font-size: 0.9rem;
    color: var(--secondary-gray);
}

.service-footer-harmonized {
    background: var(--primary-light);
    padding: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.cta-button.primary {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    border: 2px solid transparent;
}

.cta-button.primary:hover {
    background: transparent;
    border: 2px solid var(--accent-bronze);
    color: var(--accent-bronze);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent-bronze);
    border: 2px solid var(--accent-bronze);
}

.cta-button.secondary:hover {
    background: var(--accent-bronze);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===============================================
   ABOUT SECTION MELHORADA
   =============================================== */

.about-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(242, 236, 225, 0.3) 0%, transparent 50%);
}

.about-visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-float-element {
    position: absolute;
    color: var(--accent-bronze);
    opacity: 0.1;
}

.element-1 {
    top: 10%;
    left: 5%;
}

.element-2 {
    top: 70%;
    right: 5%;
}

.element-3 {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}

.about-svg {
    width: 150px;
    height: 150px;
}

.about-header-enhanced {
    text-align: center;
    margin-bottom: 60px;
}

.about-title-decoration {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.title-underline {
    height: 3px;
    width: 100px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.about-gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-image-container {
    position: relative;
}

.about-image-container.main-image {
    margin-bottom: 20px;
}

.about-secondary-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.about-image-container.secondary {
    flex: 1;
}

.about-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-frame:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 20px 40px rgba(28, 60, 78, 0.2);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.about-image-frame:hover .image-overlay {
    opacity: 0.05;
}

.about-image-decoration {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    pointer-events: none;
}

.image-corner-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.top-left { top: 0; left: 0; }
.top-right { top: 0; right: 0; }
.bottom-left { bottom: 0; left: 0; }
.bottom-right { bottom: 0; right: 0; }

.about-text-content {
    position: relative;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    line-height: 1.7;
    position: relative;
}

.quote-icon {
    color: var(--accent-bronze);
    font-size: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--secondary-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-highlight {
    margin: 40px 0;
}

.highlight-box {
    background: var(--gradient-primary);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(190, 175, 150, 0.2) 0%, transparent 70%);
}

.highlight-box p {
    position: relative;
    z-index: 1;
    margin: 0;
}

.highlight-icon {
    color: var(--accent-bronze);
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-conclusion {
    font-size: 1.1rem;
    color: var(--secondary-gray);
    line-height: 1.7;
}

/* ===============================================
   TESTIMONIALS SECTION MELHORADA
   =============================================== */

.testimonials-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.testimonials-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, rgba(242, 236, 225, 0.2) 0%, transparent 50%);
}

.testimonials-visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonial-float {
    position: absolute;
    color: var(--accent-bronze);
    opacity: 0.1;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.float-2 {
    top: 80%;
    right: 5%;
    animation-delay: 2s;
}

.float-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-subtitle {
    margin-top: 15px;
}

.testimonials-subtitle p {
    font-size: 1.1rem;
    color: var(--secondary-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card.enhanced {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(190, 175, 150, 0.2);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card.enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(28, 60, 78, 0.15);
    border-color: var(--accent-bronze);
}

.testimonial-card.enhanced:hover::before {
    opacity: 0.02;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-right: 15px;
}

.testimonial-quote-mark {
    color: var(--accent-bronze);
    font-size: 3rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--secondary-gray);
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

.testimonial-rating {
    color: var(--warning);
    font-size: 0.9rem;
}

/* ===============================================
    FOOTER - Elementos Gráficos Sutis e Layout Aprimorado
    =============================================== */

.footer {
    position: relative;
    background: var(--gradient-primary);
    color: var(--primary-light);
    overflow: hidden;
    margin-top: 80px;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 25%, rgba(190, 175, 150, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 85% 75%, rgba(242, 236, 225, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(190, 175, 150, 0.05) 1px, transparent 1px),
        linear-gradient(135deg, #1C3C4E 0%, #2A4A5C 50%, #1C3C4E 100%);
    z-index: -2;
}

.footer-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.footer-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top,
        rgba(190, 175, 150, 0.08) 0%,
        rgba(190, 175, 150, 0.04) 30%,
        transparent 100%);
}

.footer-visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-float-element {
    position: absolute;
    opacity: 0.08;
    color: var(--accent-bronze);
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.footer-float-element.element-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.footer-float-element.element-2 {
    top: 65%;
    right: 8%;
    animation-delay: 2s;
}

.footer-float-element.element-3 {
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

.footer-svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 15px rgba(190, 175, 150, 0.2));
}

.footer-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-top: 60px;
}

.footer-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--primary-light);
    margin-bottom: 12px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    position: relative;
    display: block;
    text-align: center;
}

.footer-subtitle {
    font-size: 1.15rem;
    color: rgba(242, 236, 225, 0.85);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.4;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-contact,
.footer-social,
.footer-legal {
    position: relative;
    background: rgba(242, 236, 225, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(190, 175, 150, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-contact:hover,
.footer-social:hover,
.footer-legal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(28, 60, 78, 0.2);
    border-color: rgba(190, 175, 150, 0.2);
}

.contact-header,
.social-header,
.legal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(190, 175, 150, 0.2);
}

.contact-icon,
.social-icon,
.legal-icon {
    color: var(--accent-bronze);
    font-size: 1.4rem;
    background: rgba(190, 175, 150, 0.1);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(242, 236, 225, 0.9);
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.contact-item:hover {
    background: rgba(190, 175, 150, 0.05);
    color: var(--primary-light);
    transform: translateX(5px);
}

.social-links,
.legal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link,
.legal-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(242, 236, 225, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.social-link:hover,
.legal-link:hover {
    color: var(--accent-bronze);
    background: rgba(190, 175, 150, 0.1);
    border-color: rgba(190, 175, 150, 0.2);
    transform: translateX(5px);
}

.footer-symbol {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.symbol-container {
    position: relative;
    display: inline-block;
    padding: 20px;
    background: rgba(242, 236, 225, 0.05);
    border-radius: 50%;
    border: 2px solid rgba(190, 175, 150, 0.2);
}

.footer-logo {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(190, 175, 150, 0.3));
}

.symbol-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid var(--accent-bronze);
    border-radius: 50%;
    opacity: 0.15;
    animation: glow 4s ease-in-out infinite;
    background: var(--gradient-accent);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(190, 175, 150, 0.2);
    padding-top: 40px;
    position: relative;
}

.footer-divider {
    height: 2px;
    background: var(--gradient-accent);
    margin-bottom: 25px;
    border-radius: 1px;
}

.copyright {
    color: rgba(242, 236, 225, 0.75);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* ===============================================
   ANIMAÇÕES
   =============================================== */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: var(--shadow-glow); }
    50% { box-shadow: 0 0 30px rgba(190, 175, 150, 0.5); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .navbar-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(242, 236, 225, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        height: calc(100vh - 60px);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(28, 60, 78, 0.3);
        padding: 40px 0;
        gap: 25px;
        justify-content: flex-start;
        align-items: center;
        z-index: 999;
    }

    .navbar-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 18px 35px;
        border-radius: 20px;
        width: 80%;
        max-width: 300px;
        margin: 8px 0;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .nav-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(190, 175, 150, 0.3);
        border-color: var(--accent-bronze);
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .highlight-text {
        padding: 4px 12px;
        font-size: 0.9em;
        margin: 0 2px;
    }

    .hero-content {
        padding: 0 20px;
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .hero-profile-section {
        flex-direction: column;
        gap: 20px;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .hero-astro-elements {
        width: 300px;
        height: 200px;
    }

    .logo-container {
        padding: 25px;
        margin-bottom: 30px;
    }

    .logo {
        width: 250px;
    }

    .hero-cta-section {
        padding: 30px 25px;
        margin-top: 20px;
    }

    .primary-cta {
        padding: 18px 35px;
        font-size: 1.15rem;
        width: 100%;
        max-width: 320px;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-gallery {
        order: -1;
    }

    .about-secondary-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-image-container.secondary {
        min-height: 200px;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .testimonial-card.enhanced {
        padding: 35px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-header {
        margin-bottom: 50px;
        padding-top: 40px;
    }

    .footer-title {
        font-size: 1.9rem;
    }

    .footer-contact,
    .footer-social,
    .footer-legal {
        padding: 25px;
    }

    .benefits-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .service-footer-harmonized {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        padding: 16px 25px;
    }

    .footer-float-element {
        font-size: 2rem;
    }

    .hero-bg {
        height: 100vh;
        object-position: center center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .highlight-text {
        padding: 2px 8px;
        font-size: 0.8em;
        margin: 0 1px;
        display: inline-block;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .primary-cta {
        padding: 16px 30px;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonial-card.enhanced {
        padding: 25px 20px;
    }

    .footer-title {
        font-size: 1.7rem;
    }

    .footer-contact,
    .footer-social,
    .footer-legal {
        padding: 20px;
    }
}

/* ===== WHATSAPP FLOATING BUTTON APRIMORADO ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #20B954);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #20B954, #25D366);
}

.whatsapp-float:active {
    transform: scale(0.95) translateY(-1px);
}

/* ===== EFEITO RIPPLE PARA BOTÕES ===== */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== ESTILOS PARA NAVEGAÇÃO ATIVA ===== */
.nav-link.active {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.nav-link.active::before {
    left: 0;
}

/* ===== MELHORIAS DE ACESSIBILIDADE ===== */
.nav-link:focus,
.cta-button:focus,
.hamburger:focus {
    outline: 2px solid var(--accent-bronze);
    outline-offset: 2px;
}

/* ===============================================
    ANIMAÇÕES SUAVES E TRANSIÇÕES ELEGANTES
    =============================================== */

/* ===== ANIMAÇÕES DE ENTRADA AVANÇADAS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== ANIMAÇÕES DE HOVER E INTERAÇÃO ===== */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* ===== TRANSIÇÕES GLOBAIS ELEGANTES ===== */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== ANIMAÇÕES DE CARDS E SEÇÕES ===== */
.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:nth-child(odd) {
    animation: fadeInLeft 1s ease-out forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

.service-card:nth-child(even) {
    animation: fadeInRight 1s ease-out forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(28, 60, 78, 0.2);
}

.testimonial-card {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.4s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.6s;
}

.testimonial-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 20px 50px rgba(28, 60, 78, 0.15);
}

/* ===== ANIMAÇÕES DE ELEMENTOS DECORATIVOS ===== */
.section-float {
    animation: float 6s ease-in-out infinite;
    transition: all 0.4s ease;
}

.section-float:hover {
    transform: scale(1.2);
    color: var(--accent-bronze);
}

.about-float-element {
    animation: float 5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.about-float-element:hover {
    transform: scale(1.3) rotate(5deg);
    opacity: 0.8;
}

.footer-float-element {
    animation: float 7s ease-in-out infinite;
    transition: all 0.4s ease;
}

.footer-float-element:hover {
    transform: scale(1.4);
    color: var(--accent-bronze);
}

/* ===== ANIMAÇÕES DE TEXTO E TÍTULOS ===== */
.section-title {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title:hover {
    transform: scale(1.02);
    text-shadow: 0 0 30px rgba(190, 175, 150, 0.3);
}

.title-icon {
    animation: sparkle 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.title-icon:hover {
    transform: scale(1.3) rotate(10deg);
    color: var(--accent-bronze);
}

/* ===== ANIMAÇÕES DE BOTÕES ===== */
.cta-button {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:active {
    transform: translateY(1px) scale(0.98);
}

/* ===== ANIMAÇÕES DE IMAGENS ===== */
.about-image-frame {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-frame:hover {
    transform: scale(1.05) rotate(2deg);
}

.image-corner-decoration {
    transition: all 0.4s ease;
}

.about-image-frame:hover .image-corner-decoration {
    transform: scale(1.2) rotate(10deg);
}

/* ===== ANIMAÇÕES DE FORMULÁRIOS E INPUTS ===== */
.contact-item,
.social-link,
.legal-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover,
.social-link:hover,
.legal-link:hover {
    transform: translateX(8px);
}

/* ===== ANIMAÇÕES DE CARREGAMENTO ===== */
@keyframes loadingPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: loadingPulse 1.5s ease-in-out infinite;
}

/* ===== ANIMAÇÕES DE SUCESSO ===== */
@keyframes successCheck {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-45deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.success-animation {
    animation: successCheck 0.6s ease-out forwards;
}

/* ===== ANIMAÇÕES DE SCROLL ===== */
@keyframes scrollIndicator {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateY(10px);
    }
}

.scroll-indicator {
    animation: scrollIndicator 2s ease-in-out infinite;
}

/* ===== MELHORAR PERFORMANCE DAS ANIMAÇÕES ===== */
.service-card,
.testimonial-card,
.cta-button,
.section-title {
    will-change: transform;
    backface-visibility: hidden;
}

/* Reset will-change após animações */
.service-card:not(:hover),
.testimonial-card:not(:hover),
.cta-button:not(:hover),
.section-title:not(:hover) {
    will-change: auto;
}

/* ===============================================
    SOBRE.HTML - INTRODUÇÃO COM CARDS ELEGANTES
    =============================================== */

/* Introduction Section Enhanced */
.intro-header-enhanced {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.intro-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Responsividade para evitar 3 colunas */
@media (max-width: 1200px) and (min-width: 769px) {
    .intro-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .intro-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
}

.intro-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(28, 60, 78, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(190, 175, 150, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.intro-card.featured {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.8) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(190, 175, 150, 0.25);
}

.intro-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(190, 175, 150, 0.08) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.intro-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(28, 60, 78, 0.2), 0 0 30px rgba(190, 175, 150, 0.1);
    border-color: var(--accent-bronze);
    background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
}

.card-visual {
    position: relative;
    margin-bottom: 30px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-container {
    position: relative;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-bronze) 0%, #d4c4a8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(190, 175, 150, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    margin: 0 auto 25px auto;
}

.intro-card:hover .card-icon-container {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 20px 45px rgba(190, 175, 150, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #beaf96 0%, #e6d5c0 100%);
}

.card-icon {
    font-size: 2.2rem;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.intro-card:hover .card-icon {
    transform: rotate(-5deg) scale(1.1);
    color: var(--primary-dark);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

.icon-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.2;
    animation: glow 3s ease-in-out infinite;
    z-index: 1;
}

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.card-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(190, 175, 150, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.card-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--accent-bronze);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card-description {
    font-size: 1.05rem;
    color: var(--secondary-gray);
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
    font-weight: 400;
    text-align: left;
    padding: 0 5px;
}

.card-footer {
    margin-top: auto;
    padding-top: 25px;
    border-top: 2px solid rgba(190, 175, 150, 0.15);
    background: linear-gradient(90deg, transparent 0%, rgba(190, 175, 150, 0.05) 50%, transparent 100%);
    border-radius: 0 0 19px 19px;
    margin: 0 -35px -50px -35px;
    padding: 25px 35px 30px 35px;
}

.card-insight {
    font-size: 0.95rem;
    color: var(--accent-bronze);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(190, 175, 150, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.intro-card:hover .card-overlay {
    opacity: 1;
}

.intro-cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(28, 60, 78, 0.05) 0%, rgba(190, 175, 150, 0.1) 100%);
    border-radius: 30px;
    border: 2px solid rgba(190, 175, 150, 0.2);
    position: relative;
    overflow: hidden;
}

.intro-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(190, 175, 150, 0.1), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

.intro-cta-text {
    font-size: 1.3rem;
    color: var(--secondary-gray);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.intro-cta-section .cta-button {
    position: relative;
    z-index: 1;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(190, 175, 150, 0.3);
    border: 2px solid transparent;
}

.intro-cta-section .cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(190, 175, 150, 0.4);
    border-color: var(--accent-bronze);
}

/* Mobile Responsiveness for Intro Cards */
@media (max-width: 768px) {
    .intro-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .intro-card {
        padding: 40px 30px;
        min-height: 320px;
    }

    .card-icon-container {
        width: 70px;
        height: 70px;
    }

    .card-icon {
        font-size: 1.8rem;
    }

    .intro-cta-section {
        padding: 40px 25px;
        margin-top: 50px;
    }

    .intro-cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .intro-header-enhanced {
        margin-bottom: 60px;
    }

    .intro-card {
        padding: 25px 20px;
        min-height: 280px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-description {
        font-size: 0.95rem;
    }

    .intro-cta-section {
        padding: 30px 20px;
    }
}

/* ===============================================
    PÁGINAS DE CALENDÁRIO - APRESENTAÇÃO DE SERVIÇOS
    =============================================== */

/* Service Presentation Section */
.service-presentation {
    background: linear-gradient(135deg, #F2ECE1 0%, #E8DED0 100%);
    position: relative;
    padding: 80px 0;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.service-main-content {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(190, 175, 150, 0.1);
    position: relative;
    overflow: hidden;
}

.service-main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(190, 175, 150, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.service-description-enhanced {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.service-description-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-gray);
    margin-top: 20px;
}

.service-benefits-showcase {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.benefits-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-showcase-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(190, 175, 150, 0.05) 0%, rgba(242, 236, 225, 0.3) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--accent-bronze);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(28, 60, 78, 0.1);
    border-left-color: var(--primary-dark);
}

.benefit-showcase-item:hover::before {
    opacity: 0.05;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(190, 175, 150, 0.3);
    position: relative;
    z-index: 1;
}

.benefit-showcase-item span {
    font-size: 1rem;
    color: var(--secondary-gray);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-details-enhanced {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.detail-timeline {
    margin-top: 30px;
}

.service-info-enhanced {
    position: relative;
    z-index: 1;
}

.info-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-showcase-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(242, 236, 225, 0.4) 0%, rgba(190, 175, 150, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(190, 175, 150, 0.1);
    transition: all 0.3s ease;
}

.info-showcase-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(28, 60, 78, 0.08);
    border-color: rgba(190, 175, 150, 0.2);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-showcase-item span {
    font-size: 0.95rem;
    color: var(--secondary-gray);
    line-height: 1.5;
}

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.price-card {
    background: linear-gradient(135deg, #1C3C4E 0%, #2A4A5C 100%);
    color: white;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(190, 175, 150, 0.2);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(190, 175, 150, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.price-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.price-header h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent-bronze);
}

.price-decoration {
    color: var(--accent-bronze);
    font-size: 2rem;
    opacity: 0.8;
}

.price-main {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-bronze);
    display: block;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.payment-info {
    font-size: 1rem;
    opacity: 0.9;
    color: rgba(242, 236, 225, 0.9);
}

.price-features {
    border-top: 1px solid rgba(190, 175, 150, 0.2);
    padding-top: 25px;
    position: relative;
    z-index: 1;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(242, 236, 225, 0.9);
    font-size: 0.95rem;
}

.price-feature i {
    color: var(--accent-bronze);
    font-size: 0.8rem;
}

.cta-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-button.large {
    padding: 20px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(190, 175, 150, 0.3);
}

.cta-button.large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(190, 175, 150, 0.4);
}

/* Mobile Responsiveness for Service Pages */
@media (max-width: 768px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 30px;
    }

    .service-main-content {
        padding: 30px 25px;
    }

    .benefits-showcase-grid,
    .info-showcase-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-showcase-item {
        padding: 20px;
    }

    .info-showcase-item {
        padding: 15px;
    }

    .price-card {
        padding: 30px 25px;
    }

    .price {
        font-size: 2rem;
    }

    .cta-button.large {
        padding: 18px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-presentation {
        padding: 50px 0;
    }

    .service-main-content {
        padding: 25px 20px;
    }

    .benefit-showcase-item {
        padding: 18px;
    }

    .price-card {
        padding: 25px 20px;
    }

    .price {
        font-size: 1.8rem;
    }
}

/* ===== RESPONSIVIDADE PARA WHATSAPP ===== */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

/* ===============================================
    CONTATO 2.0 - Seção Premium Aprimorada
    =============================================== */

/* Contact Section Enhanced */
.contact {
    position: relative !important;
    background: linear-gradient(135deg, #1C3C4E 0%, #2A4A5C 100%) !important;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(190, 175, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(242, 236, 225, 0.05) 0%, transparent 50%) !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    color: var(--primary-light) !important;
    overflow: hidden !important;
    padding: 80px 0 !important;
    min-height: 100vh !important;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 60, 78, 0.1);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

/* Contact Background Decoration */
.contact .section-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact .section-pattern {
    position: absolute;
    top: 10%;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(190, 175, 150, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact .section-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact .section-float {
    position: absolute;
    color: rgba(190, 175, 150, 0.3);
    font-size: 2rem;
    animation: float 8s ease-in-out infinite;
    opacity: 0.4;
}

.contact .float-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.contact .float-2 {
    top: 70%;
    right: 12%;
    animation-delay: 3s;
}

.contact .float-3 {
    top: 45%;
    left: 85%;
    animation-delay: 6s;
}

/* Contact Header Enhanced */
.contact-header {
    text-align: center !important;
    margin-bottom: 40px !important;
    position: relative !important;
    z-index: 20 !important;
}

/* Contact Description */
.contact-description {
    text-align: center !important;
    margin-bottom: 60px !important;
    position: relative !important;
    z-index: 20 !important;
}

.contact-description .section-subtitle {
    color: rgba(242, 236, 225, 0.95) !important;
    font-size: 1.4rem !important;
    font-weight: 400 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 25px 30px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(190, 175, 150, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    position: relative !important;
}

.contact-description .section-subtitle::before {
    content: '';
    position: absolute !important;
    top: -5px !important;
    left: -5px !important;
    right: -5px !important;
    bottom: -5px !important;
    background: linear-gradient(135deg, rgba(190, 175, 150, 0.1), rgba(242, 236, 225, 0.05)) !important;
    border-radius: 25px !important;
    z-index: -1 !important;
    opacity: 0.8 !important;
}

.contact-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.contact-header .section-title {
    color: var(--primary-dark) !important;
    font-size: 3rem !important;
    margin-bottom: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 20px 40px !important;
    border-radius: 25px !important;
    border: 2px solid rgba(190, 175, 150, 0.3) !important;
    box-shadow: 0 10px 30px rgba(28, 60, 78, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    position: relative !important;
    display: block !important;
    width: fit-content !important;
    max-width: 100% !important;
    font-family: var(--font-title) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

.contact-header .section-subtitle {
    color: rgba(242, 236, 225, 0.9);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Contact Centered Layout */
.contact-centered-layout {
    position: relative !important;
    max-width: 1000px;
    margin: 80px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 600px;
}

/* Contact Form Container Enhanced */
.contact-form-container {
    max-width: 800px !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    padding: 60px !important;
    border-radius: 30px !important;
    box-shadow:
        0 25px 60px rgba(28, 60, 78, 0.2),
        0 0 40px rgba(190, 175, 150, 0.1) !important;
    border: 2px solid rgba(190, 175, 150, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 10 !important;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(190, 175, 150, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 248, 248, 0.8) 100%);
    border-radius: 30px;
    pointer-events: none;
}

/* Contact Form Enhanced */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Efeito mágico no hover do formulário */
.contact-form-container:hover {
    box-shadow:
        0 30px 70px rgba(28, 60, 78, 0.25),
        0 0 60px rgba(190, 175, 150, 0.2),
        0 0 100px rgba(190, 175, 150, 0.1);
    border-color: rgba(190, 175, 150, 0.4);
    transform: translateY(-2px);
    transition: all 0.4s ease;
}

/* Form Input Groups */
.form-input-group {
    position: relative;
    margin-bottom: 20px;
}

.form-input-group label {
    display: block;
    font-family: var(--font-title);
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-input-group label i {
    color: var(--accent-bronze);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 20px 25px;
    border: 2px solid rgba(190, 175, 150, 0.2);
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(28, 60, 78, 0.08);
    position: relative;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-bronze);
    box-shadow:
        0 0 0 4px rgba(190, 175, 150, 0.2),
        0 8px 25px rgba(28, 60, 78, 0.15);
    background: white;
    transform: translateY(-2px);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-bronze);
    box-shadow:
        0 0 0 4px rgba(190, 175, 150, 0.2),
        0 8px 25px rgba(28, 60, 78, 0.15);
    background: white;
    transform: translateY(-2px);
}

.contact-form input {
    height: 65px;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.6;
}

/* Form Submit Button Enhanced */
.contact-form button {
    width: 100%;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 25px 40px;
    border: none;
    border-radius: 25px;
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(190, 175, 150, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.contact-form button i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(190, 175, 150, 0.5);
    background: linear-gradient(135deg, #beaf96 0%, #d4c4a8 100%);
}

.contact-form button:hover i {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:active {
    transform: translateY(-2px) scale(0.98);
}

/* Contact Form Icons */
.contact-form-container {
    position: relative;
}

/* Elementos Astrológicos Flutuantes */
.astro-elements-floating {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 5 !important;
}

/* Efeito de partículas cósmicas */
.astro-elements-floating::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    width: 2px;
    height: 2px;
    background: var(--accent-bronze);
    border-radius: 50%;
    box-shadow:
        100px 50px 0 var(--accent-bronze),
        -100px 80px 0 rgba(255, 215, 0, 0.8),
        150px -50px 0 rgba(186, 175, 255, 0.6),
        -150px -30px 0 rgba(255, 165, 0, 0.7),
        80px 100px 0 rgba(221, 160, 221, 0.5),
        -80px -80px 0 rgba(152, 251, 152, 0.6);
    animation: cosmicSparkle 6s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes cosmicSparkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.astro-float-element {
    position: absolute !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, rgba(190, 175, 150, 0.2), rgba(255, 255, 255, 0.1)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    color: var(--accent-bronze) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(190, 175, 150, 0.3) !important;
    animation: astroFloat 8s ease-in-out infinite !important;
    box-shadow: 0 8px 25px rgba(190, 175, 150, 0.2) !important;
    z-index: 10 !important;
}

.astro-float-element i {
    filter: drop-shadow(0 0 5px rgba(190, 175, 150, 0.5));
}

/* Posições específicas dos elementos */
.astro-moon {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    color: #BEAFF7;
}

.astro-star {
    top: 25%;
    right: 8%;
    animation-delay: 2s;
    color: #FFD700;
}

.astro-sun {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
    color: #FFA500;
}

.astro-crystal {
    bottom: 15%;
    right: 12%;
    animation-delay: 1s;
    color: #E6E6FA;
}

.astro-constellation {
    top: 60%;
    left: 2%;
    animation-delay: 3s;
    color: #DDA0DD;
}

.astro-cosmic {
    top: 45%;
    right: 5%;
    animation-delay: 5s;
    color: #98FB98;
}

/* Animações para elementos flutuantes */
@keyframes astroFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) rotate(90deg) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-8px) rotate(180deg) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.05);
        opacity: 0.9;
    }
}

/* Efeito hover para elementos */
.astro-float-element:hover {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 12px 35px rgba(190, 175, 150, 0.4);
}

/* Mobile Responsiveness for Contact 2.0 */
@media (max-width: 768px) {
    .contact-centered-layout {
        margin: 60px auto 0;
        min-height: 500px;
    }

    .contact-form-container {
        margin: 0;
        padding: 40px 30px;
    }

    .astro-float-element {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .astro-moon {
        top: 5%;
        left: 3%;
    }

    .astro-star {
        top: 20%;
        right: 5%;
    }

    .astro-sun {
        bottom: 25%;
        left: 5%;
    }

    .astro-crystal {
        bottom: 20%;
        right: 8%;
    }

    .astro-constellation {
        top: 55%;
        left: 1%;
    }

    .astro-cosmic {
        top: 40%;
        right: 3%;
    }

    .contact-header {
        margin-bottom: 60px;
    }

    .contact-header .section-title {
        font-size: 2.5rem;
        padding: 18px 35px;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        max-width: 100%;
    }

    .contact-header .section-subtitle {
        font-size: 1.1rem;
    }

    .contact-description .section-subtitle {
        font-size: 1.2rem;
        padding: 20px 25px;
    }

    .contact-description .section-subtitle {
        font-size: 1.2rem;
        padding: 20px 25px;
    }

    .contact-form {
        gap: 25px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .contact-form input {
        height: 60px;
    }

    .contact-form textarea {
        min-height: 150px;
    }

    .contact-form button {
        padding: 20px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-centered-layout {
        margin: 40px auto 0;
        min-height: 450px;
    }

    .contact-form-container {
        margin: 0;
        padding: 30px 25px;
    }

    .astro-float-element {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .astro-moon {
        top: 3%;
        left: 2%;
    }

    .astro-star {
        top: 15%;
        right: 3%;
    }

    .astro-sun {
        bottom: 30%;
        left: 3%;
    }

    .astro-crystal {
        bottom: 25%;
        right: 5%;
    }

    .astro-constellation {
        top: 50%;
        left: 1%;
    }

    .astro-cosmic {
        top: 35%;
        right: 2%;
    }

    .contact-header .section-title {
        font-size: 2.2rem;
        padding: 15px 25px;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        max-width: 100%;
    }

    .contact-description .section-subtitle {
        font-size: 1.1rem;
        padding: 18px 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 16px 18px;
    }

    .contact-form button {
        padding: 18px 30px;
        font-size: 1rem;
    }
}

/* ===== MODO PAISAGEM NO CELULAR ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-bg {
        height: 100vh;
        object-fit: cover;
        object-position: center center;
    }

    .hero-content {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .hero-text-container {
        background: rgba(28, 60, 78, 0.1);
        border-radius: 20px;
        border: 2px solid var(--accent-bronze);
        box-shadow: 0 20px 60px rgba(28, 60, 78, 0.1);
        padding: 20px;
        max-width: 95%;
        width: 100%;
        text-align: center;
        position: relative;
        z-index: 10;
    }

    .hero-profile-section {
        margin-bottom: 15px;
    }

    .logo-container {
        padding: 10px;
        margin-bottom: 10px;
    }

    .logo {
        width: 100px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
        line-height: 1.1;
    }

    .highlight-text {
        padding: 1px 3px;
        font-size: 0.45em;
        margin: 0 1px;
    }

    .subtitle {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .hero-cta-section {
        padding: 10px;
        margin-top: 8px;
        display: block;
    }

    .primary-cta {
        padding: 8px 14px;
        font-size: 0.75rem;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }

    .hero-description {
        font-size: 0.8rem;
        margin-top: 8px;
    }
}

/* ===============================================
    CORREÇÃO CRÍTICA - SEÇÃO DE CONTATO
    Adicione este código ao final do styles-priscila.css
    =============================================== */

/* Força o background e estrutura da seção de contato */
section#contact.section.contact {
    position: relative !important;
    background: linear-gradient(135deg, #1C3C4E 0%, #2A4A5C 100%) !important;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(190, 175, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(242, 236, 225, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #1C3C4E 0%, #2A4A5C 100%) !important;
    padding: 80px 0 !important;
    min-height: auto !important;
    overflow: visible !important;
}

/* Remove qualquer background de imagem que possa estar interferindo */
section#contact.section.contact::before {
    display: none !important;
}

/* Garante que o container tenha o z-index correto */
section#contact .container {
    position: relative !important;
    z-index: 10 !important;
}

/* Header do contato */
section#contact .contact-header {
    text-align: center !important;
    margin-bottom: 40px !important;
    position: relative !important;
    z-index: 20 !important;
}

section#contact .contact-header .section-title {
    color: var(--primary-dark) !important;
    font-size: 3rem !important;
    margin-bottom: 20px !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 20px 40px !important;
    border-radius: 25px !important;
    border: 2px solid rgba(190, 175, 150, 0.3) !important;
    box-shadow: 0 10px 30px rgba(28, 60, 78, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    display: inline-block !important;
    font-family: 'Playfair Display', serif !important;
}

section#contact .contact-header .title-icon {
    color: var(--accent-bronze) !important;
    margin: 0 10px !important;
}

/* Descrição do contato */
section#contact .contact-description {
    text-align: center !important;
    margin-bottom: 60px !important;
    position: relative !important;
    z-index: 20 !important;
}

section#contact .contact-description .section-subtitle {
    color: rgba(242, 236, 225, 0.95) !important;
    font-size: 1.4rem !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 25px 30px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(190, 175, 150, 0.2) !important;
    backdrop-filter: blur(10px) !important;
}

/* Layout centralizado */
section#contact .contact-centered-layout {
    position: relative !important;
    max-width: 1000px !important;
    margin: 80px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Container do formulário */
section#contact .contact-form-container {
    max-width: 800px !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    padding: 60px !important;
    border-radius: 30px !important;
    box-shadow: 0 25px 60px rgba(28, 60, 78, 0.2) !important;
    border: 2px solid rgba(190, 175, 150, 0.2) !important;
    position: relative !important;
    z-index: 15 !important;
}

/* Formulário */
section#contact .contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Labels dos inputs */
section#contact .form-input-group label {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 1.15rem !important;
    color: var(--primary-dark) !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
}

section#contact .form-input-group label i {
    color: var(--accent-bronze) !important;
    font-size: 1.2rem !important;
}

/* Inputs e textarea */
section#contact .contact-form input,
section#contact .contact-form textarea {
    width: 100% !important;
    padding: 20px 25px !important;
    border: 2px solid rgba(190, 175, 150, 0.2) !important;
    border-radius: 15px !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 1.1rem !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-dark) !important;
    box-shadow: 0 4px 15px rgba(28, 60, 78, 0.08) !important;
    transition: all 0.4s ease !important;
}

section#contact .contact-form input:focus,
section#contact .contact-form textarea:focus {
    outline: none !important;
    border-color: var(--accent-bronze) !important;
    box-shadow: 0 0 0 4px rgba(190, 175, 150, 0.2), 0 8px 25px rgba(28, 60, 78, 0.15) !important;
    background: white !important;
}

section#contact .contact-form textarea {
    min-height: 180px !important;
    resize: vertical !important;
}

/* Botão de submit */
section#contact .contact-form button.cta-button {
    width: 100% !important;
    background: linear-gradient(135deg, #BEAF96, #D4C4A8) !important;
    color: var(--primary-dark) !important;
    padding: 25px 40px !important;
    border: none !important;
    border-radius: 25px !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    box-shadow: 0 8px 25px rgba(190, 175, 150, 0.4) !important;
    margin-top: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    transition: all 0.5s ease !important;
}

section#contact .contact-form button.cta-button:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(190, 175, 150, 0.5) !important;
    background: linear-gradient(135deg, #beaf96 0%, #d4c4a8 100%) !important;
}

section#contact .contact-form button.cta-button i {
    font-size: 1.1rem !important;
}

/* Elementos astrológicos flutuantes */
section#contact .astro-elements-floating {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 5 !important;
}

section#contact .astro-float-element {
    position: absolute !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, rgba(190, 175, 150, 0.2), rgba(255, 255, 255, 0.1)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(190, 175, 150, 0.3) !important;
    box-shadow: 0 8px 25px rgba(190, 175, 150, 0.2) !important;
    animation: astroFloat 8s ease-in-out infinite !important;
}

/* Footer - garante espaçamento adequado */
section#contact + .footer {
    margin-top: 0 !important;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    section#contact.section.contact {
        padding: 60px 0 !important;
    }

    section#contact .contact-header .section-title {
        font-size: 2.5rem !important;
        padding: 18px 35px !important;
    }

    section#contact .contact-description .section-subtitle {
        font-size: 1.2rem !important;
        padding: 20px 25px !important;
    }

    section#contact .contact-centered-layout {
        margin: 60px auto 0 !important;
    }

    section#contact .contact-form-container {
        padding: 40px 30px !important;
    }

    section#contact .contact-form {
        gap: 25px !important;
    }

    section#contact .contact-form input,
    section#contact .contact-form textarea {
        padding: 18px 20px !important;
        font-size: 1rem !important;
    }

    section#contact .contact-form button.cta-button {
        padding: 20px 35px !important;
        font-size: 1.1rem !important;
    }

    section#contact .astro-float-element {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    section#contact.section.contact {
        padding: 50px 0 !important;
    }

    section#contact .contact-header .section-title {
        font-size: 2.2rem !important;
        padding: 15px 25px !important;
    }

    section#contact .contact-description .section-subtitle {
        font-size: 1.1rem !important;
        padding: 18px 20px !important;
    }

    section#contact .contact-centered-layout {
        margin: 40px auto 0 !important;
    }

    section#contact .contact-form-container {
        padding: 30px 25px !important;
    }

    section#contact .contact-form input,
    section#contact .contact-form textarea {
        padding: 16px 18px !important;
    }

    section#contact .contact-form button.cta-button {
        padding: 18px 30px !important;
        font-size: 1rem !important;
    }

    section#contact .astro-float-element {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
}