/* Pet Shop specific styles */
:root {
    --pet-primary: #ff9800; /* naranja principal */
    --pet-secondary: #00bcd4; /* celeste vibrante */
    --pet-accent: #ffd600; /* amarillo */
    --pet-dark: #8d5524; /* marrón suave */
    --pet-light: #fff8e1; /* beige claro */
    --pet-bg-primary: #fafbfc; /* fondo principal suave */
    --pet-bg-secondary: #f5f7fa; /* fondo alternativo */
    --pet-bg-tertiary: #f0f4f8; /* fondo secciones */
}

/* Global background improvements */
body {
    background: linear-gradient(135deg, var(--pet-bg-primary) 0%, var(--pet-bg-secondary) 100%);
    min-height: 100vh;
}

/* Section background alternating pattern */
section:nth-child(even) {
    background: linear-gradient(135deg, var(--pet-bg-secondary) 0%, var(--pet-bg-tertiary) 100%);
}

section:nth-child(odd) {
    background: linear-gradient(135deg, var(--pet-bg-primary) 0%, #ffffff 100%);
}

/* Subtle pattern overlay for visual interest */
section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 152, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 214, 0, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

section > .container {
    position: relative;
    z-index: 1;
}

/* Navbar custom styles */
.navbar-light .navbar-nav .nav-link {
    color: var(--pet-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--pet-primary);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Hero section */
.hero-section {
    min-height: 100vh;
    position: relative;
    color: white;
    padding: 100px 0 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pet-primary) 0%, var(--pet-secondary) 100%);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 152, 0, 0.6) 0%,
        rgba(0, 188, 212, 0.5) 50%,
        rgba(255, 214, 0, 0.4) 100%
    );
    z-index: 2;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        background: linear-gradient(135deg, rgba(255, 152, 0, 0.6) 0%, rgba(0, 188, 212, 0.5) 50%, rgba(255, 214, 0, 0.4) 100%);
    }
    100% {
        background: linear-gradient(135deg, rgba(255, 152, 0, 0.5) 0%, rgba(0, 188, 212, 0.6) 50%, rgba(255, 214, 0, 0.5) 100%);
    }
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive hero adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 100px 0 40px;
    }

    .hero-video {
        /* Permitir video en móvil pero con menor calidad para mejor rendimiento */
        object-position: center;
    }
}

/* Video loading states */
.hero-video {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video:not([src*="blob:"]):not([src=""]) {
    opacity: 0.8;
}

/* Services section */
.services-card {
    border: none;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 252, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.services-card:hover::before {
    left: 100%;
}

.services-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 152, 0, 0.2);
    background: linear-gradient(145deg, #ffffff, var(--pet-light));
}

.service-icon {
    font-size: 3.5rem;
    color: var(--pet-secondary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.services-card:hover .service-icon {
    color: var(--pet-primary);
    transform: rotateY(360deg) scale(1.1);
}

.services-card h3 {
    font-weight: 600;
    color: var(--pet-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.services-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Products section */
.product-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 60%, rgba(255, 152, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 188, 212, 0.15);
}

.product-card img {
    transition: all 0.4s ease;
    filter: brightness(1) saturate(1);
}

.product-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.2);
}

.product-card .card-body {
    position: relative;
    z-index: 2;
    padding: 1.25rem;
}

.product-card h4 {
    font-weight: 600;
    color: var(--pet-dark);
    transition: color 0.3s ease;
}

.product-card:hover h4 {
    color: var(--pet-primary);
}

.product-price {
    color: var(--pet-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--pet-secondary), var(--pet-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom buttons */
.btn-pet-primary {
    background-color: var(--pet-primary);
    border-color: var(--pet-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-pet-primary:hover {
    background-color: var(--pet-secondary);
    border-color: var(--pet-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.18);
}

/* Testimonials section */
.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--pet-light) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--pet-primary), var(--pet-secondary), var(--pet-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.15);
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--pet-primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.05);
    border-color: var(--pet-secondary);
}

.testimonial-quote {
    font-style: italic;
    position: relative;
    padding: 0 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
}

.testimonial-quote:before,
.testimonial-quote:after {
    content: '"';
    font-size: 3rem;
    color: var(--pet-secondary);
    position: absolute;
    font-family: serif;
    opacity: 0.6;
}

.testimonial-quote:before {
    left: -0.5rem;
    top: -1rem;
}

.testimonial-quote:after {
    right: -0.5rem;
    bottom: -2rem;
}

.testimonial-card h4 {
    color: var(--pet-dark);
    font-weight: 600;
    margin: 0;
    position: relative;
}

/* About section enhancements */
.about-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pet-bg-tertiary) 0%, #f8feff 100%);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 20%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--pet-primary), var(--pet-secondary));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.about-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--pet-dark);
    line-height: 1.2;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--pet-primary), var(--pet-secondary));
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    max-width: 500px;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 152, 0, 0.1);
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.15);
}

.feature-icon {
    background: linear-gradient(135deg, var(--pet-primary), var(--pet-secondary));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pet-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.stats-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8feff 100%);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.stats-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.stats-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pet-dark);
    margin-bottom: 0.5rem;
}

.stats-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.2);
    background: rgba(255, 255, 255, 1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pet-primary), var(--pet-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-suffix {
    font-size: 1.8rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.stat-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    color: rgba(255, 152, 0, 0.2);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    color: var(--pet-primary);
    transform: scale(1.2);
}

/* FAQ section enhancements */
.faq-section {
    background: linear-gradient(135deg, var(--pet-bg-secondary) 0%, var(--pet-bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 15%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.faq-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--pet-dark);
    line-height: 1.2;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--pet-primary), var(--pet-secondary));
    border-radius: 2px;
}

.faq-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-accordion {
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 152, 0, 0.1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 188, 212, 0.15);
    background: rgba(255, 255, 255, 1);
}

.faq-button {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.faq-button:hover::before {
    left: 100%;
}

.faq-button:focus {
    outline: none;
    box-shadow: none;
}

.faq-question {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.faq-icon {
    background: linear-gradient(135deg, var(--pet-primary), var(--pet-secondary));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
    transform: scale(1.1) rotate(5deg);
}

.faq-icon i {
    font-size: 1.2rem;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pet-dark);
    line-height: 1.4;
}

.faq-toggle {
    background: rgba(255, 152, 0, 0.1);
    color: var(--pet-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-button:not(.collapsed) .faq-toggle {
    background: var(--pet-primary);
    color: white;
    transform: rotate(45deg);
}

.faq-button:hover .faq-toggle {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.3);
}

.faq-button:not(.collapsed):hover .faq-toggle {
    transform: scale(1.1) rotate(45deg);
}

.faq-collapse {
    transition: all 0.3s ease;
}

.faq-body {
    padding: 0 2rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.faq-body p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    padding-left: 65px;
    position: relative;
}

.faq-body p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--pet-primary), var(--pet-secondary));
    border-radius: 1px;
}

@media (max-width: 768px) {
    .faq-button {
        padding: 1.5rem;
    }

    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .faq-icon {
        margin-right: 0;
    }

    .faq-body p {
        padding-left: 0;
    }

    .faq-body p::before {
        display: none;
    }
}

/* Blog section */
.blog-section {
    background: linear-gradient(135deg, var(--pet-bg-primary) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.blog-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--pet-dark);
    line-height: 1.2;
    position: relative;
}

.blog-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--pet-primary), var(--pet-secondary));
    border-radius: 2px;
}

.blog-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--pet-primary), var(--pet-secondary));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pet-dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #999;
}

.blog-read-more {
    color: var(--pet-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--pet-secondary);
    transform: translateX(5px);
}

/* Team section */
.team-section {
    background: linear-gradient(135deg, var(--pet-bg-tertiary) 0%, var(--pet-bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.team-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--pet-dark);
    line-height: 1.2;
    position: relative;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--pet-primary), var(--pet-secondary));
    border-radius: 2px;
}

.team-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 152, 0, 0.15);
}

.team-image {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.team-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--pet-primary);
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
    border-color: var(--pet-secondary);
}

.team-social {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    color: var(--pet-primary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--pet-secondary);
}

.team-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pet-dark);
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--pet-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.team-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .blog-meta {
        flex-direction: column;
        gap: 0.3rem;
    }

    .team-image img {
        width: 100px;
        height: 100px;
    }

    .team-social {
        position: static;
        opacity: 1;
        margin-top: 1rem;
        width: auto;
        height: auto;
        background: none;
    }
}

/* Gallery section */
.gallery-section {
    background: linear-gradient(135deg, var(--pet-bg-secondary) 0%, var(--pet-bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--pet-dark);
    line-height: 1.2;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--pet-primary), var(--pet-secondary));
    border-radius: 2px;
}

.gallery-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.simple-gallery-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
}

.simple-gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 152, 0, 0.15);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.simple-gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 152, 0, 0.8) 0%, rgba(0, 188, 212, 0.6) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.service-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--pet-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.simple-gallery-card:hover .service-badge {
    transform: translateY(0);
}

.gallery-info {
    padding: 1.5rem;
    text-align: center;
}

.gallery-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pet-dark);
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Plans section */
.plans-section {
    background: linear-gradient(135deg, var(--pet-bg-primary) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.plans-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--pet-dark);
    line-height: 1.2;
    position: relative;
}

.plans-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--pet-primary), var(--pet-secondary));
    border-radius: 2px;
}

.plans-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.plan-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 188, 212, 0.15);
}

.plan-card.featured {
    border-color: var(--pet-primary);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pet-primary), var(--pet-secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-icon {
    background: linear-gradient(135deg, var(--pet-primary), var(--pet-secondary));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
}

.plan-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pet-dark);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.plan-price .currency {
    font-size: 1.2rem;
    color: var(--pet-primary);
    font-weight: 600;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pet-dark);
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    margin-right: 0.8rem;
    width: 16px;
    text-align: center;
}

.plan-features li .fa-check {
    color: var(--pet-secondary);
}

.plan-features li .fa-times {
    color: #ccc;
}

.btn-plan {
    background: linear-gradient(135deg, var(--pet-primary), var(--pet-secondary));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .before-after-container {
        height: 200px;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-15px);
    }

    .plan-price .amount {
        font-size: 2.5rem;
    }

    /* Botones más pequeños en móvil */
    .product-card .btn-sm {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Contact section enhancements */
.contact-section {
    background: linear-gradient(135deg, var(--pet-bg-tertiary) 0%, var(--pet-bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 25%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: float 10s ease-in-out infinite;
}

.contact-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--pet-dark);
    line-height: 1.2;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--pet-primary), var(--pet-secondary));
    border-radius: 2px;
}

.contact-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 152, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
    pointer-events: none;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pet-dark);
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(255, 152, 0, 0.1);
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.15);
}

.contact-icon {
    background: linear-gradient(135deg, var(--pet-primary), var(--pet-secondary));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pet-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 152, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--pet-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1rem 1.2rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    backdrop-filter: blur(5px);
}

.contact-form .form-control:focus {
    border-color: var(--pet-secondary);
    box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.15);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #999;
    font-style: italic;
}

.contact-form select.form-control {
    background-image: linear-gradient(45deg, transparent 50%, var(--pet-primary) 50%), linear-gradient(135deg, var(--pet-primary) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.contact-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-submit:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
