/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

/* Header */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-image {
    text-align: center;
}

.hero-image {
    max-width: 400px;
    margin: 0 auto;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* ===== NUEVA PORTADA V2 - DISEÑO SIMPLE Y FUNCIONAL ===== */

.hero-v2 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Lado Izquierdo - Contenido */
.hero-left {
    color: white;
}

.hero-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.badge-emoji {
    font-size: 1.2rem;
}

.hero-title-v2 {
    margin-bottom: 2rem;
}

.name-highlight {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.subtitle-text {
    display: block;
    font-size: 1.5rem;
    color: #e0e0e0;
    font-weight: 300;
}

.hero-promise {
    margin-bottom: 2rem;
}

.promise-title {
    font-size: 1.6rem;
    color: #ff6b9d;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-list {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.services-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #ffd700;
    margin: 0;
    text-align: center;
}

.services-text strong {
    color: #ff6b9d;
    font-weight: 700;
}

.promise-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #b0b0b0;
}

.hero-urgency {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.urgency-emoji {
    font-size: 1.2rem;
}

.urgency-message {
    flex: 1;
}

.hero-warning {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.warning-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.warning-emoji {
    font-size: 24px;
    flex-shrink: 0;
}

.warning-text strong {
    color: #d4af37;
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.warning-text p {
    color: #8b7355;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* Conversion Boost Section */
.conversion-boost {
    margin: 1.5rem 0;
}

.limited-offer {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    padding: 1.2rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.offer-emoji {
    font-size: 2rem;
    animation: bounce 1s infinite;
}

.offer-text {
    flex: 1;
    color: white;
}

.offer-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.offer-text p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.95;
}

@keyframes glow {
    from {
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    }
    to {
        box-shadow: 0 8px 35px rgba(255, 107, 107, 0.6);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mexico Guarantee Section */
.mexico-guarantee {
    margin: 1.5rem 0;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #00b894, #00a085);
    padding: 1.2rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
    border: 2px solid #fff;
}

.guarantee-emoji {
    font-size: 2.5rem;
    animation: wave 2s ease-in-out infinite;
}

.guarantee-text {
    flex: 1;
    color: white;
}

.guarantee-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.guarantee-text p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.95;
}

@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.hero-buttons-v2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-whatsapp, .btn-services {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.btn-services {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-services:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-emoji {
    font-size: 1.5rem;
}

.btn-content {
    flex: 1;
    text-align: left;
}

.btn-content strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.btn-content small {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Lado Derecho - Imagen */
.hero-right {
    position: relative;
}

.image-wrapper {
    position: relative;
    text-align: center;
}

.image-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
}

.circle-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.circle-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-color: rgba(255, 107, 157, 0.3);
}

.circle-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-color: rgba(114, 9, 183, 0.3);
}

.hero-image-v2 {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image-v2:hover {
    transform: scale(1.02);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffd700;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    z-index: 2;
}

.images-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.main-image {
    order: 1;
}

.secondary-image {
    order: 2;
    max-width: 300px;
}

.hero-image-secondary {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 3px solid #ffd700;
}

.hero-image-secondary:hover {
    transform: scale(1.05);
}

.secondary-badge {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    font-size: 14px;
    padding: 0.5rem 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content-v2 {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .name-highlight {
        font-size: 2.2rem;
    }
    
    .subtitle-text {
        font-size: 1.2rem;
    }
    
    .promise-title {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-urgency {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hero-buttons-v2 {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Services */
.services {
    background: var(--bg-light);
}

/* Service Categories */
.service-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-title.urgent {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-title.strengthen {
    background: linear-gradient(135deg, #2ed573, #7bed9f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-title.protection {
    background: linear-gradient(135deg, #5352ed, #70a1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.urgent-card::before {
    background: linear-gradient(90deg, #ff4757, #ff6b6b);
}

.strengthen-card::before {
    background: linear-gradient(90deg, #2ed573, #7bed9f);
}

.protection-card::before {
    background: linear-gradient(90deg, #5352ed, #70a1ff);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.urgent-card:hover {
    border-color: #ff4757;
}

.strengthen-card:hover {
    border-color: #2ed573;
}

.protection-card:hover {
    border-color: #5352ed;
}

.service-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-badge.popular {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
}

.service-badge.special {
    background: linear-gradient(135deg, #5352ed, #70a1ff);
}

.service-time {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-price {
    background: linear-gradient(135deg, #2ed573, #7bed9f);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(46, 213, 115, 0.3);
}



.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Master Title */
.master-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.master-title h3 {
    margin: 0;
    font-size: 2rem;
    color: var(--primary-color);
}

.title-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Intro Text */
.intro-text {
    margin-bottom: 3rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Stats Container - Nuevo Diseño Asimétrico */
.stats-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin: 3rem 0;
    align-items: start;
}

/* Tarjeta Principal (98% Tasa de Éxito) */
.stat-card-main {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card-main:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.4);
}

.stat-card-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card-main:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-icon-main {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.stat-content-main {
    text-align: center;
}

.stat-number-main {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-main {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Grid de Tarjetas Secundarias */
.stats-secondary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card-secondary {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card-secondary:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Tarjeta Primaria (Casos Exitosos) */
.stat-card-secondary.primary {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: white;
    border: 3px solid #ff6b9d;
}

.stat-card-secondary.primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
}

.stat-card-secondary.primary .stat-number,
.stat-card-secondary.primary .stat-label {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Tarjeta Accent (Días Promedio) */
.stat-card-secondary.accent {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border: 3px solid #ff8a65;
    color: #d84315;
}

.stat-card-secondary.accent:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 138, 101, 0.3);
}

.stat-card-secondary.accent .stat-number {
    color: #d84315;
    font-weight: 900;
}

/* Estilos para iconos, números y etiquetas de tarjetas secundarias */
.stat-card-secondary .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.stat-card-secondary .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-card-secondary .stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid - Mantener para compatibilidad */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Featured Stat Card (98% Tasa de Éxito) */
.stat-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.stat-card.featured .stat-number {
    color: white;
    font-size: 2.5rem;
}

.stat-card.featured .stat-label {
    color: rgba(255,255,255,0.9);
    font-weight: 700;
}

.stat-card.featured::before {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Highlight Stat Card (7-21 Días) */
.stat-card.highlight {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    border: 3px solid #ff4757;
}

.stat-card.highlight:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 75, 87, 0.3);
}

.stat-card.highlight .stat-number {
    color: white;
    font-size: 2.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-card.highlight .stat-label {
    color: rgba(255,255,255,0.95);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.stat-card.highlight::before {
    content: '🚀';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Specialization Section */
.specialization-section {
    margin: 3rem 0;
}

.specialization-section h4 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.spec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.spec-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.spec-content h5 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.spec-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Certifications */
.certifications {
    margin: 3rem 0;
}

.certifications h4 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.cert-list {
    display: grid;
    gap: 1rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.cert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cert-item span:last-child {
    color: var(--text-color);
    font-weight: 500;
}

/* Guarantee Premium */
.guarantee-premium {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.guarantee-icon {
    font-size: 2.5rem;
}

.guarantee-header h4 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.guarantee-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.guarantee-features .feature {
    background: rgba(255,255,255,0.2);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(10px);
}

.traditional-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-color);
    border: 1px solid var(--primary-color);
}

.credential i {
    color: var(--primary-color);
}

.about-image {
    text-align: center;
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.profile-image {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    min-width: 80px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.experience-badge .years {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.7rem;
    line-height: 1.2;
    margin-top: 0.2rem;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.trust-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.trust-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-text {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* ===== TESTIMONIALS MODERN SECTION ===== */
.testimonials-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 30%, #16213e 70%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(255, 107, 157, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 85% 15%, rgba(78, 205, 196, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Header Moderno */
.testimonials-modern-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-content {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(78, 205, 196, 0.2));
    border: 1px solid rgba(255, 107, 157, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.section-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b9d 0%, #4ecdc4 50%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.3);
}

.section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Estadísticas Modernas */
.stats-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.6s;
}

.stat-modern:hover::before {
    left: 100%;
}

.stat-modern:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.3);
    border-color: rgba(255, 107, 157, 0.5);
}

.stat-icon-modern {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.5));
}

.stat-number-modern {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label-modern {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Carrusel de Testimonios */
.testimonials-carousel {
    margin-top: 4rem;
}

/* Testimonio Destacado */
.featured-testimonial {
    margin-bottom: 4rem;
}

.testimonial-spotlight {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15) 0%, rgba(78, 205, 196, 0.15) 100%);
    backdrop-filter: blur(25px);
    border-radius: 35px;
    padding: 3rem;
    border: 2px solid rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.spotlight-decoration {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 157, 0.1), transparent, rgba(78, 205, 196, 0.1), transparent);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

.testimonial-content-featured {
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-size: 5rem;
    color: rgba(255, 107, 157, 0.4);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-family: serif;
}

.testimonial-text-featured {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 2rem 0;
    font-style: italic;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-author-featured {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.author-image-featured {
    position: relative;
}

.avatar-featured {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.verified-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid #fff;
}

.author-details-featured h4 {
    color: #fff;
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.author-location-featured {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.rating-featured {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stars-featured {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.rating-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

.service-info-featured {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-tag-featured {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-tag-featured.endulzamiento {
    background: linear-gradient(135deg, #ff6b9d, #ff8a80);
    color: white;
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.4);
}

.result-tag-featured {
    color: #4ecdc4;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 15px rgba(78, 205, 196, 0.6);
}

/* Grid de Testimonios Modernos */
.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card-modern:hover::before {
    opacity: 1;
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.25);
    border-color: rgba(255, 107, 157, 0.4);
}

.testimonial-card-modern.premium-card {
    border: 2px solid rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
}

.testimonial-card-modern.highlight-card {
    border: 2px solid rgba(78, 205, 196, 0.4);
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
}

.testimonial-card-modern.accent-card {
    border: 2px solid rgba(138, 43, 226, 0.4);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
}

.testimonial-card-modern.special-card {
    border: 2px solid rgba(255, 20, 147, 0.4);
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
}

.card-header-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.client-avatar-modern {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 16px rgba(255, 107, 157, 0.3);
}

.client-name-modern {
    color: #fff;
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.location-modern {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating-modern {
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.testimonial-text-modern {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin: 1.5rem 0;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.service-badge-modern {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 1rem 0 0.5rem 0;
    position: relative;
    z-index: 2;
}

.service-badge-modern.amarre {
    background: linear-gradient(135deg, #ff6b9d, #ff8a80);
    color: white;
    box-shadow: 0 8px 16px rgba(255, 107, 157, 0.3);
}

.service-badge-modern.separacion {
    background: linear-gradient(135deg, #ff4757, #ff6b9d);
    color: white;
    box-shadow: 0 8px 16px rgba(255, 71, 87, 0.3);
}

.service-badge-modern.matrimonio {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

.service-badge-modern.limpia {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    box-shadow: 0 8px 16px rgba(78, 205, 196, 0.3);
}

.service-badge-modern.retorno {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.service-badge-modern.dominacion {
    background: linear-gradient(135deg, #ff20a0, #ff6b9d);
    color: white;
    box-shadow: 0 8px 16px rgba(255, 32, 160, 0.3);
}

.result-badge-modern {
    color: #4ecdc4;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
    position: relative;
    z-index: 2;
}

/* Botón Ver Más Testimonios */
.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-more-testimonials {
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.4);
}

.btn-more-testimonials:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.5);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-more-testimonials:hover .btn-icon {
    transform: scale(1.2);
}

/* ===== RESPONSIVE DESIGN FOR TESTIMONIALS ===== */
@media (max-width: 1200px) {
    .section-title-modern {
        font-size: 3rem;
    }
    
    .testimonial-spotlight {
        padding: 2.5rem;
    }
    
    .testimonials-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .testimonials-modern {
        padding: 60px 0;
    }
    
    .testimonials-modern-header {
        margin-bottom: 3rem;
    }
    
    .section-title-modern {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .stats-modern-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-modern {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon-modern {
        font-size: 2.5rem;
    }
    
    .stat-number-modern {
        font-size: 2.5rem;
    }
    
    .testimonial-spotlight {
        padding: 2rem;
        border-radius: 25px;
    }
    
    .quote-mark {
        font-size: 4rem;
    }
    
    .testimonial-text-featured {
        font-size: 1.3rem;
    }
    
    .testimonial-author-featured {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .avatar-featured {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-info-featured {
        justify-content: center;
    }
    
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card-modern {
        padding: 1.5rem;
    }
    
    .btn-more-testimonials {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title-modern {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .stats-modern-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-spotlight {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
    
    .testimonial-text-featured {
        font-size: 1.1rem;
    }
    
    .avatar-featured {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-tag-featured {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .testimonial-card-modern {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }
    
    .client-avatar-modern {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .btn-more-testimonials {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin: 0 1rem;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.testimonial-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

.avatar {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-info {
    flex: 1;
}

.client-info h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.location {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

.stars {
    font-size: 1.1rem;
    color: #ffd700;
    flex-shrink: 0;
}

.service-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-tag.endulzamiento {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
}

.service-tag.amarre {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
}

.service-tag.separacion {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: white;
}

.service-tag.matrimonio {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.service-tag.limpia {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
}

.service-tag.retorno {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.result-time {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 2px solid var(--bg-light);
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    color: white;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Methods Section */
.methods {
    background: var(--bg-white);
    padding: 4rem 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.method-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

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

.method-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.method-card ul {
    list-style: none;
    text-align: left;
}

.method-card ul li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.method-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Prevent horizontal overflow */
.container,
.hero-content,
.services-grid,
.about-content,
.contact-content {
    max-width: 100%;
    overflow-x: hidden;
}

.hero-image,
.about-image {
    max-width: 100%;
    overflow: hidden;
}

.hero-image img,
.about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}



/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: var(--shadow);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .about-image {
        max-width: 280px;
    }
    
    .about-image img {
        height: 220px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    /* About Section Mobile */
    .master-title {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .master-title h3 {
        font-size: 1.8rem;
    }
    
    .title-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }
    
    /* Nuevo diseño responsivo para estadísticas */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .stat-card-main {
        padding: 2.5rem 2rem;
        min-height: 200px;
    }
    
    .stat-icon-main {
        font-size: 3rem;
    }
    
    .stat-number-main {
        font-size: 3.5rem;
    }
    
    .stat-label-main {
        font-size: 1.2rem;
    }
    
    .stat-subtitle {
        font-size: 0.9rem;
    }
    
    .stats-secondary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card-secondary {
        padding: 1.5rem 1rem;
    }
    
    .stat-card-secondary .stat-icon {
        font-size: 2rem;
    }
    
    .stat-card-secondary .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-card-secondary .stat-label {
        font-size: 0.8rem;
    }
    
    /* Tarjetas especiales en móvil */
    .stat-card-secondary.primary,
    .stat-card-secondary.accent {
        grid-column: 1 / -1;
        margin: 0.5rem 0;
    }
    
    .specialization-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .spec-item {
        padding: 1.2rem;
    }
    
    .spec-icon {
        font-size: 1.8rem;
    }
    
    .spec-content h5 {
        font-size: 1rem;
    }
    
    .spec-content p {
        font-size: 0.9rem;
    }
    
    .cert-item {
        padding: 0.8rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .cert-icon {
        font-size: 1.3rem;
    }
    
    .guarantee-premium {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .guarantee-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .guarantee-icon {
        font-size: 2rem;
    }
    
    .guarantee-header h4 {
        font-size: 1.5rem;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .guarantee-features .feature {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .profile-image {
        height: 300px;
    }
    
    .experience-badge {
        top: -5px;
        right: -5px;
        min-width: 60px;
        min-height: 60px;
        padding: 0.8rem;
    }
    
    .experience-badge .years {
        font-size: 1.2rem;
    }
    
    .experience-badge .text {
        font-size: 0.6rem;
    }
    
    .trust-badges {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .trust-item {
        padding: 0.8rem 1rem;
        gap: 0.6rem;
    }
    
    .trust-icon {
        font-size: 1.3rem;
    }
    
    .trust-text {
        font-size: 0.9rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    section {
        padding: 3rem 0;
        overflow-x: hidden;
    }
    
    section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .credentials {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .credential {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    * {
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 0.75rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-image {
        max-width: 250px;
    }
    
    .hero-image img {
        height: 200px;
    }
    
    .about-image {
        max-width: 230px;
    }
    
    .about-image img {
        height: 180px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    /* Service Categories Mobile */
    .service-category {
        margin-bottom: 2.5rem;
    }
    
    .category-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .category-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        margin: 0;
        border-radius: 12px;
    }
    
    .service-card.featured {
        transform: none;
        border-width: 1px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .service-time {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .service-price {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
        margin: 1rem 0;
    }
    
    .service-badge {
        top: 0.8rem;
        right: 0.8rem;
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .service-card ul li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }
    
    .services-grid {
        gap: 1rem;
        padding: 0;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        padding: 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .credentials {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .credential {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .hero-image img,
    .about-image img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
    }
    
    /* Testimonials Mobile Styles */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .testimonial-card.featured {
        transform: none;
        order: -1;
    }
    
    .testimonial-header {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .avatar {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .client-info h4 {
        font-size: 1rem;
    }
    
    .location {
        font-size: 0.8rem;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .service-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .result-time {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 12px;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        padding: 2rem 0;
    }
    
    .stat {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-text h2 {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.2rem 0.8rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    section h2 {
        font-size: 1.6rem;
    }
}

/* WhatsApp Button Styles */
.whatsapp-float {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-btn {
    display: flex !important;
    align-items: center;
    background: #25D366 !important;
    color: white !important;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    animation: pulse 2s infinite;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 24px;
    margin-right: 10px;
}

.whatsapp-text {
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Contact Section Enhancements */
.contact-intro {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.1));
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.contact-item small {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
    font-style: italic;
}

.contact-item h4 {
    color: var(--accent-color);
    margin-bottom: 5px;
}

.contact-item p {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
        padding: 0;
        font-size: 14px;
    }
    
    .whatsapp-btn i {
        margin: 0;
        font-size: 28px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .contact-intro {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    /* Testimonios responsivos */
    .testimonials-header h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-header .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .testimonials-stats-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-highlight {
        padding: 1rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-content .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-content .stat-label {
        font-size: 0.8rem;
    }
    
    .testimonials-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-main {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .quote-icon {
        font-size: 3rem;
        top: 0.5rem;
        left: 1rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        margin: 1.5rem 0;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
    
    .author-info .location {
        font-size: 0.9rem;
    }
    
    .author-info .stars {
        font-size: 1rem;
    }
    
    .service-badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .result-badge {
        font-size: 1rem;
    }
    
    .testimonials-grid-secondary {
        gap: 1rem;
    }
    
    .testimonial-card-compact {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .avatar-compact {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .client-info-compact h5 {
        font-size: 0.9rem;
    }
    
    .client-info-compact .location-compact {
        font-size: 0.7rem;
    }
    
    .client-info-compact .stars-compact {
        font-size: 0.8rem;
    }
    
    .testimonial-text-compact {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .service-tag-compact {
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
    }
    
    .result-tag-compact {
        font-size: 0.7rem;
    }
}