/* Root Variables - Healing Color Palette */
:root {
    --primary-color: #CD9777; /* Warm terracotta */
    --secondary-color: #9CAF88; /* Sage green */
    --accent-color: #E8C5A0; /* Warm cream */
    --accent-light: #F5E6D3; /* Light cream */
    --text-dark: #3A3A3A;
    --text-light: #6B6B6B;
    --text-muted: #8B8B8B;
    --bg-light: #FAF8F5;
    --bg-cream: #F5E6D3;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Section Harmonization - Consistent styling for all sections */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

section:nth-child(even) {
    background: var(--bg-cream);
}

section:nth-child(odd) {
    background: var(--bg-light);
}

/* Section Titles Standardization */
.section-title {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Bootstrap Overrides */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.btn-primary::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: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(205, 151, 119, 0.95) 100%);
    padding: 5px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}

.navbar-brand {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white !important;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 45px;
    width: auto;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)) 
            brightness(1.1) 
            contrast(1.05);
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

/* Hero Logo Styling */
.hero-logo-container {
    margin-bottom: 25px;
    animation: gentleFloat 3s ease-in-out infinite;
    padding: 20px;
    background: #FAF8F5;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(232, 197, 160, 0.2);
}

.hero-logo {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(205, 151, 119, 0.15));
    transition: all 0.5s ease;
    display: block;
}

.hero-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 20px rgba(205, 151, 119, 0.25));
}

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

/* Chakras Section Styles */
.chakras-section {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--accent-light) 100%);
    position: relative;
    overflow: hidden;
}

.chakras-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill-opacity='0.02'%3E%3Cpolygon fill='%23CD9777' points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/svg%3E") center/80px;
    pointer-events: none;
}

.chakras-section .container {
    position: relative;
    z-index: 2;
}

.chakra-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(205, 151, 119, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
    border: 1px solid rgba(205, 151, 119, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.chakra-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.chakra-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(205, 151, 119, 0.2);
    border-color: var(--primary-color);
}

.chakra-card:hover::before {
    opacity: 0.1;
}

.chakra-symbol {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
    filter: drop-shadow(0 5px 15px rgba(205, 151, 119, 0.2));
}

.chakra-card:hover .chakra-symbol {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 25px rgba(205, 151, 119, 0.3));
}

.chakra-card p {
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
    line-height: 1.6;
}

.chakra-card h3 {
    margin-bottom: 15px;
    font-size: 1.4em;
    font-family: 'Crimson Text', serif;
    position: relative;
    z-index: 3;
    color: var(--primary-color);
    font-weight: 600;
}

/* Service Price Cards */
.service-price-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}

.service-price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-hover);
}

.service-price-card h3 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
}

.service-price-card h5 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Animal Reiki Section */
.animal-reiki-content {
    padding: 30px;
}

.animal-benefits-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    height: 100%;
}

.benefit-group {
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
    border-radius: 10px;
}

.benefit-group:last-child {
    margin-bottom: 0;
}

.benefit-group h5 {
    font-family: 'Crimson Text', serif;
    margin-bottom: 10px;
}

.nature-connection-info {
    text-align: center;
}

.nature-connection-info h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.5em;
}

/* Pancho Story Card */
.pancho-story-card h4 {
    font-family: 'Crimson Text', serif;
}

.pancho-story-card h5 {
    font-family: 'Crimson Text', serif;
}

@media (max-width: 768px) {
    .pancho-image-container {
        margin-bottom: 20px;
    }
    
    .pancho-image-container img {
        max-width: 180px;
    }
}

.nav-link {
    color: white !important;
    font-weight: 400;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    background: linear-gradient(135deg, 
        rgba(232, 197, 160, 0.95) 0%, 
        rgba(245, 230, 211, 0.95) 50%, 
        rgba(205, 151, 119, 0.95) 100%);
    margin-top: 10px;
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(205, 151, 119, 0.3);
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    padding: 8px 15px;
    margin: 2px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: rgba(94, 64, 51, 0.9) !important;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.4);
    color: rgba(94, 64, 51, 1) !important;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px; /* Compensar navbar fija */
}

.hero-lotus {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: 1;
    opacity: 0.1;
    animation: floatGentle 8s ease-in-out infinite;
}

.lotus-decoration {
    width: 200px;
    height: 200px;
    filter: blur(1px);
}

@keyframes floatGentle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--bg-cream) 0%, 
        var(--accent-light) 25%, 
        var(--accent-color) 50%, 
        var(--primary-color) 75%, 
        var(--secondary-color) 100%);
    opacity: 0.1;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill-opacity='0.03'%3E%3Cpolygon fill='%23CD9777' points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/svg%3E") center/80px;
    animation: backgroundFloat 20s infinite linear;
}

@keyframes backgroundFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-light) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px var(--shadow);
    animation: heroFadeIn 1.5s ease;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { 
        text-shadow: 0 0 10px rgba(205, 151, 119, 0.3); 
    }
    to { 
        text-shadow: 0 0 20px rgba(205, 151, 119, 0.5), 0 0 30px rgba(156, 175, 136, 0.3); 
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-symbols {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.hero-symbols i {
    font-size: 2rem;
    color: var(--secondary-color);
    animation: symbolFloat 3s ease-in-out infinite;
}

.hero-symbols i:nth-child(2) {
    animation-delay: -1s;
}

.hero-symbols i:nth-child(3) {
    animation-delay: -2s;
}

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

/* Introduction Section */
.intro-section {
    background: var(--bg-cream);
    margin-top: -80px;
    padding-top: 160px !important;
}

.intro-card {
    background: var(--white);
    border-radius: 25px;
    padding: 60px 40px;
    position: relative;
    box-shadow: 0 15px 35px var(--shadow);
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.05;
    animation: introFloat 15s infinite linear;
}

@keyframes introFloat {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.intro-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
    animation: sparkle 4s infinite ease-in-out;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.6; }
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Services Section */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-svg {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px auto;
    display: block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 5px 15px rgba(205, 151, 119, 0.2));
}



.service-card:hover .service-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 25px rgba(205, 151, 119, 0.3));
}

.service-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px auto;
    display: block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 5px 15px rgba(205, 151, 119, 0.2));
}

.service-card:hover .service-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 25px rgba(205, 151, 119, 0.3));
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px var(--shadow-hover);
}

.service-image {
    text-align: center;
    margin-bottom: 30px;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    animation: serviceFloat 3s ease-in-out infinite;
}

@keyframes serviceFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-detail {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* About Section */
.about-section {
    background: var(--bg-cream);
}

.about-image {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.eva-portrait {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow);
    transition: all 0.4s ease;
    background: var(--white);
    padding: 20px;
}

.eva-portrait:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px var(--shadow-hover);
}

.image-placeholder {
    background: var(--white);
    border-radius: 20px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow);
    border: 3px dashed var(--accent-color);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.image-placeholder p {
    color: var(--text-light);
    font-style: italic;
}

.about-content {
    padding-left: 40px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.certifications {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 5px 20px var(--shadow);
}

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

.certifications ul {
    list-style: none;
    padding: 0;
}

.certifications li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.certifications li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.about-mission {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px 25px;
    border-radius: 15px;
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 30px;
    line-height: 1.4;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: visible;
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
}

.gallery-item {
    margin-bottom: 30px;
}

.gallery-placeholder {
    background: var(--bg-cream);
    border-radius: 15px;
    padding: 60px 30px;
    text-align: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed var(--accent-color);
    transition: all 0.3s ease;
}

.gallery-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--shadow);
}

.gallery-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gallery-placeholder p {
    color: var(--text-light);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-cream);
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px var(--shadow);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    color: var(--accent-color);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-rating {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: center;
    border-top: 1px solid var(--accent-color);
    padding-top: 20px;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.testimonial-service {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.no-testimonials {
    padding: 60px 30px;
    color: var(--text-light);
}

.no-testimonials i {
    color: var(--primary-color);
    opacity: 0.5;
}

.testimonial-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px var(--shadow);
}

/* Subscription CTA Section */
.subscription-cta-section {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--accent-light) 100%);
    position: relative;
    overflow: visible;
    padding-bottom: 100px;
}

.subscription-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    animation: floatGentle 15s ease-in-out infinite;
}

.subscription-cta-content {
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

.subscription-cta-content .btn {
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.subscription-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.subscription-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-item i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.subscription-visual {
    text-align: center;
    position: relative;
}

.mandala-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(205, 151, 119, 0.3));
    animation: gentleRotate 20s linear infinite;
}

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

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-form-card {
    background: var(--bg-cream);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px var(--shadow);
}

.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px var(--shadow);
    height: fit-content;
}

.contact-info-card h4 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--accent-color);
}

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

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
    min-width: 20px;
}

.contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

/* Form Styles */
.form-label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(205, 151, 119, 0.25);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    margin-top: 0;
}

.footer-brand {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-social p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin: 0 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Floating Elements */
.floating-element {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    animation: floatAround 25s infinite linear;
}

@keyframes floatAround {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, -50px) rotate(90deg); }
    50% { transform: translate(0, -100px) rotate(180deg); }
    75% { transform: translate(-100px, -50px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Alert Styles */
.alert {
    border-radius: 15px;
    border: none;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 40px 30px;
        margin: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .contact-info-card {
        margin-top: 30px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .subscription-cta-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .mandala-image {
        max-width: 300px;
    }
    
    .subscription-visual {
        margin-top: 30px;
    }
    
    .navbar-nav {
        text-align: center;
        padding-top: 20px;
    }
    
    .floating-element {
        display: none;
    }
}

/* Eva IA Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #CD9777 0%, #9CAF88 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(205, 151, 119, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse-widget 3s infinite;
}

.chat-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(205, 151, 119, 0.6);
}

.chat-widget svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@keyframes pulse-widget {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(205, 151, 119, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(205, 151, 119, 0.4), 0 0 0 10px rgba(205, 151, 119, 0.1);
        transform: scale(1.02);
    }
}

@media (max-width: 576px) {
    .logo-image {
        height: 35px;
        margin-right: 8px;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .hero-logo {
        height: 100px;
    }
    
    .hero-logo-container {
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .chat-widget {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .chat-widget svg {
        width: 25px;
        height: 25px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .intro-card {
        padding: 40px 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 30px 20px;
    }
}

/* Custom Animations */
.fade-in {
    animation: fadeInUp 0.8s ease;
}

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

/* Scroll animations will be handled by JavaScript */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
