/*
Theme Name: Master
Description: Un tema personalizado creado desde cero para Master Creativo.
Author: Master Creativo
Version: 1.0.0
Text Domain: master
*/

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;    
} 
.cta-section-2{
    display: none !important;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.cta-section-2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Header */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Master Creativo Logo */
.master-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 24px;
}

.icon-bar {
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.bar-1 {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    width: 100%;
}

.bar-2 {
    background: linear-gradient(135deg, #EC4899, #F59E0B);
    width: 80%;
}

.bar-3 {
    background: linear-gradient(135deg, #F59E0B, #8B5CF6);
    width: 60%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #333;
    letter-spacing: -0.5px;
}

.pro-text {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
    margin-left: 2px;
}

.custom-logo-link:hover .icon-bar {
    transform: scaleX(1.1);
}

.custom-logo-link:hover .bar-2 {
    width: 90%;
}

.custom-logo-link:hover .bar-3 {
    width: 70%;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.site-title:hover {
    color: #0073aa;
}

.site-description {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Navegación */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.main-navigation a:hover {
    color: #8B5CF6;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Botón del menú móvil */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1rem;
    color: #333;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #333;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F59E0B 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

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

.hero-video {
    position: relative;
}

.video-container {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    pointer-events: none;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 0.9rem;
}

.video-controls button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.video-controls button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.progress-bar {
    flex: 1;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background-color: #8B5CF6;
    width: 40%;
    transition: width 0.3s ease;
}

.time-display {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-description strong {
    font-weight: 700;
}

.highlight-badge {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    min-width: 160px;
}

.btn-primary {
    background: white;
    color: #8B5CF6;
    border-color: white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #8B5CF6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Contenido principal */
.site-main {
    padding: 0;
    min-height: 60vh;
}

.site-main .container {
    padding: 2rem 20px;
}

.content-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.no-sidebar .content-area {
    grid-template-columns: 1fr;
}

/* Posts */
.post {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.post:last-child {
    border-bottom: none;
}

.entry-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.entry-title a {
    color: #333;
    text-decoration: none;
}

.entry-title a:hover {
    color: #0073aa;
}

.entry-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.entry-meta span {
    margin-right: 1rem;
}

.entry-content {
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1rem;
}

.post-thumbnail {
    margin-bottom: 1.5rem;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Navegación de posts */
.post-navigation {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.nav-title {
    font-weight: bold;
}

/* Paginación */
.posts-navigation {
    margin: 2rem 0;
    text-align: center;
}

.nav-links a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #f9f9f9;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    margin: 0 0.5rem;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: #0073aa;
    color: #fff;
}

/* Sidebar */
.widget-area {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.widget {
    margin-bottom: 2rem;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.widget ul {
    list-style: none;
}

.widget ul li {
    padding: 0.25rem 0;
    border-bottom: 1px solid #eee;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget a {
    color: #333;
    text-decoration: none;
}

.widget a:hover {
    color: #0073aa;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Footer Contact Info */
.footer-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #e2e8f0;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.contact-label:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
}

@media (max-width: 768px) {
    .footer-contact-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .contact-label {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .footer-contact-info {
        gap: 12px;
        margin-bottom: 15px;
        padding: 15px 0;
    }
    
    .contact-label {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

/* Comentarios */
.comments-area {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.comment-list {
    list-style: none;
}

.comment {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.comment-author {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.comment-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.comment-form {
    margin-top: 2rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.comment-form input[type="submit"] {
    width: auto;
    background-color: #0073aa;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-form input[type="submit"]:hover {
    background-color: #005a87;
}

/* Formulario de búsqueda */
.search-form {
    display: flex;
    margin-bottom: 1rem;
}

.search-field {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.search-submit {
    padding: 0.75rem 1.5rem;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.search-submit:hover {
    background-color: #005a87;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) { 
    .cta-section-2{
        display: block; 
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    .content-area {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation ul {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 1rem;
        border-radius: 0 0 8px 8px;
    }
    
    .main-navigation.toggled ul {
        display: flex;
    }
    
    .main-navigation ul li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .main-navigation ul li:last-child {
        border-bottom: none;
    }
    
    .main-navigation a::after {
        display: none;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .entry-title {
        font-size: 1.5rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Header responsive */
    .header-content {
        position: relative;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .main-navigation {
        position: relative;
    }
    
    /* Hero responsive */
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 140px;
    }
    
    .video-controls {
        padding: 0.75rem;
        font-size: 0.8rem;
        gap: 0.75rem;
    }
    
    .video-controls button {
        padding: 0.375rem;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 0.5rem 0;
    }
    
    .site-main .container {
        padding: 1rem 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .widget-area {
        padding: 1rem;
    }
    
    /* Hero mobile */
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .highlight-badge {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .video-container {
        border-radius: 8px;
    }
    
    .video-controls {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .time-display {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* Utilidades */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.skip-link {
    background-color: #f1f1f1;
    color: #21759b;
    text-decoration: none;
    padding: 8px 16px;
    position: absolute;
    top: -40px;
    left: 6px;
    z-index: 100000;
}

.skip-link:focus {
    top: 7px;
}

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

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.hero-text {
    animation: slideInUp 0.8s ease-out;
}

.hero-video {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .widget-area,
    .menu-toggle,
    .hero-section {
        display: none;
    }
    
    .content-area {
        grid-template-columns: 1fr;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Video Fallback */
.video-fallback {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #8B5CF6, #EC4899, #F59E0B, #8B5CF6);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
}

.gradient-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.8) 0%, 
        rgba(236, 72, 153, 0.6) 25%,
        rgba(245, 158, 11, 0.4) 50%,
        rgba(139, 92, 246, 0.6) 75%,
        rgba(236, 72, 153, 0.8) 100%);
    background-size: 200% 200%;
    animation: gradientMove 6s ease-in-out infinite alternate;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 8s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.element-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.element-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
    animation-duration: 12s;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% { 
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-20px) rotate(270deg);
        opacity: 1;
    }
}

/* ¿Qué es Master Creativo? Section */
.what-is-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.what-is-text {
    max-width: 500px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;

}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.one {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
}

.feature-icon.two {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}



.feature-text {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

/* Illustration Styles */
.what-is-illustration {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(139, 92, 246, 0.8) 0%, 
        rgba(236, 72, 153, 0.6) 30%, 
        rgba(245, 158, 11, 0.4) 60%, 
        transparent 80%);
    border-radius: 50%;
    overflow: visible;
}

/* Device Styles */
.device {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: #2d3748;
    overflow: hidden;
    z-index: 3;
}

.laptop {
    width: 180px;
    height: 120px;
    top: 5%;
    right: 15%;
    transform: rotate(-10deg);
    animation: floatDevice 6s ease-in-out infinite;
    border-radius: 8px;
}

.laptop::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 15%;
    right: 15%;
    height: 6px;
    background: #1a202c;
    border-radius: 0 0 6px 6px;
}

.phone {
    width: 50px;
    height: 90px;
    bottom: 15%;
    left: 15%;
    border-radius: 15px;
    transform: rotate(15deg);
    animation: floatDevice 6s ease-in-out infinite 1s;
}

.tablet {
    width: 100px;
    height: 75px;
    top: 15%;
    left: 5%;
    transform: rotate(-15deg);
    animation: floatDevice 6s ease-in-out infinite 2s;
    border-radius: 8px;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B5CF6, #EC4899, #F59E0B);
    border-radius: inherit;
    padding: 6px;
    position: relative;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a202c;
    overflow: hidden;
}

.master-logo-screen {
    font-size: 10px;
    text-align: center;
    font-weight: 900;
}

.master-logo-screen span {
    color: #8B5CF6;
    font-weight: 400;
}

.phone-content {
    font-size: 16px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899, #F59E0B);
    border-radius: 6px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-logo {
    font-weight: 900;
    font-size: 18px;
}

.tablet-logo {
    font-size: 8px;
    color: #8B5CF6;
    font-weight: 900;
}

/* Person Illustration - Real person style */
.person-illustration {
    position: absolute;
    bottom: 10%;
    right: 30%;
    transform: scale(1);
    animation: floatPerson 8s ease-in-out infinite;
    z-index: 2;
}

.person {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 120px;
}

.person-head {
    width: 35px;
    height: 35px;
    background: radial-gradient(circle at 30% 30%, #fbbf24, #f59e0b);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.person-body {
    width: 45px;
    height: 55px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 20px 20px 8px 8px;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Modern office chair */
.chair {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.chair-back {
    width: 55px;
    height: 70px;
    background: linear-gradient(135deg, #6b7280, #4b5563);
    border-radius: 8px 8px 0 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.chair-seat {
    width: 65px;
    height: 12px;
    background: linear-gradient(135deg, #4b5563, #374151);
    border-radius: 8px;
    margin-top: -3px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.chair-base {
    width: 75px;
    height: 15px;
    background: linear-gradient(135deg, #374151, #1f2937);
    border-radius: 40px;
    margin: 8px auto 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Megaphones - positioned like in the image */
.megaphone {
    position: absolute;
    animation: floatMegaphone 5s ease-in-out infinite;
    z-index: 4;
}

/* Left megaphone */
.megaphone:first-of-type {
    top: 25%;
    left: 8%;
    transform: rotate(-20deg);
}

/* Right megaphone */
.megaphone:last-of-type {
    bottom: 25%;
    right: 8%;
    transform: rotate(25deg);
    animation-delay: 2s;
}

.megaphone-body {
    width: 50px;
    height: 25px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-radius: 0 12px 12px 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.megaphone-handle {
    width: 15px;
    height: 12px;
    background: linear-gradient(135deg, #4b5563, #374151);
    border-radius: 6px;
    position: absolute;
    bottom: -3px;
    left: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Floating Shapes - more realistic positioning */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.shape-1 {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    top: 20%;
    right: 25%;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #EC4899, #DB2777);
    bottom: 35%;
    left: 25%;
    animation: floatShape 8s ease-in-out infinite 2s;
}

.shape-3 {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    top: 60%;
    right: 15%;
    animation: floatShape 8s ease-in-out infinite 4s;
}

.shape-4 {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #10B981, #059669);
    top: 40%;
    left: 20%;
    animation: floatShape 8s ease-in-out infinite 6s;
}

/* Connecting Lines - dashed lines like in the image */
.connecting-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    position: absolute;
    width: 120px;
    height: 60px;
    opacity: 0.8;
}

.line-1 {
    top: 15%;
    left: 25%;
    animation: dashMove 4s linear infinite;
}

.line-2 {
    bottom: 20%;
    right: 25%;
    animation: dashMove 4s linear infinite reverse;
    animation-delay: 1s;
}

/* Animations */
@keyframes floatDevice {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% { 
        transform: translateY(-12px) rotate(var(--rotation, 0deg));
    }
}

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

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

@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes dashMove {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 20; }
}

/* Responsive */
@media (max-width: 1024px) {
    .what-is-content {
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .illustration-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .what-is-section {
        padding: 4rem 0;
    }
    
    .what-is-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .what-is-text {
        max-width: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .illustration-container {
        height: 300px;
    }
    
    .laptop {
        width: 150px;
        height: 100px;
    }
    
    .phone {
        width: 45px;
        height: 80px;
    }
    
    .tablet {
        width: 90px;
        height: 70px;
    }
    
    .person-illustration {
        transform: scale(0.6);
    }
    
    .megaphone {
        transform: scale(0.8) rotate(-15deg);
    }
    
    .footer-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .what-is-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .features-grid {
        gap: 0.75rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem 0.75rem;
    }
    
    .illustration-container {
        height: 250px;
    }
    
    .footer-text {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Section Footer */
.section-footer {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.footer-text {
    font-size: 1.25rem;
    color: #2d3748;
    font-weight: 600;
}

.highlight-text {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Updated Animations */
@keyframes floatDevice {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% { 
        transform: translateY(-12px) rotate(var(--rotation, 0deg));
    }
}

.laptop {
    --rotation: -10deg;
}

.phone {
    --rotation: 15deg;
}

.tablet {
    --rotation: -15deg;
}

/* Custom Illustration Image */
.custom-illustration {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.custom-illustration-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

/* Responsive for custom illustration */
@media (max-width: 1024px) {
    .custom-illustration {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .custom-illustration {
        height: 300px;
        border-radius: 15px;
    }
    
    .custom-illustration-image {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .custom-illustration {
        height: 450px;
        border-radius: 12px;
    }
    
    .custom-illustration-image {
        border-radius: 12px;
    }
}

/* Beneficios Clave Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F59E0B 100%);
    position: relative;
    overflow: hidden;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.benefit-card {
    color: #fff !important;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.benefit-card:hover {
    transform: translateY(-10px);
  
}

.benefit-image {
    position: relative;
    height: 300px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Device Mockups */
.device-mockup {
    position: relative;
    background: #2d3748;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: floatDevice 6s ease-in-out infinite;
}

.tablet-mockup {
    width: 200px;
    height: 150px;
    border-radius: 15px;
}

.laptop-mockup {
    width: 220px;
    height: 140px;
    border-radius: 8px;
}

.laptop-mockup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20%;
    right: 20%;
    height: 8px;
    background: #1a202c;
    border-radius: 0 0 8px 8px;
}

.desktop-mockup {
    width: 180px;
    height: 120px;
    border-radius: 8px;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B5CF6, #EC4899, #F59E0B);
    border-radius: inherit;
    padding: 8px;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

/* Automation Interface */
.automation-interface {
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.automation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.automation-logo {
    width: 20px;
    height: 8px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-radius: 4px;
}

.automation-nav {
    display: flex;
    gap: 4px;
}

.nav-dot {
    width: 6px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 50%;
}

.nav-dot.active {
    background: #8B5CF6;
}

.automation-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 10px;
}

.flow-step {
    display: flex;
    align-items: center;
}

.step-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: relative;
}

.step-icon.email {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.step-icon.whatsapp {
    background: linear-gradient(135deg, #10B981, #059669);
}

.step-icon.message {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.step-line {
    width: 20px;
    height: 2px;
    background: #e2e8f0;
    margin-left: 8px;
}

.automation-cards {
    display: flex;
    gap: 6px;
    flex: 1;
}

.auto-card {
    flex: 1;
    height: 30px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

/* Design Interface */
.design-interface {
    display: flex;
    height: 100%;
}

.design-sidebar {
    width: 25%;
    background: #f8fafc;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-item {
    height: 12px;
    background: #e2e8f0;
    border-radius: 4px;
}

.sidebar-item.active {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
}

.design-canvas {
    flex: 1;
    padding: 8px;
    display: flex;
    flex-direction: column;
}

.canvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.header-text {
    width: 60px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 4px;
}

.header-button {
    width: 20px;
    height: 8px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-radius: 4px;
}

.canvas-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.content-block.large {
    height: 40px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 6px;
}

.content-row {
    display: flex;
    gap: 6px;
    flex: 1;
}

.content-block.small {
    flex: 1;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 4px;
}

.design-panels {
    width: 20%;
    background: #f8fafc;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.panel-item {
    height: 10px;
    background: #e2e8f0;
    border-radius: 3px;
}

/* Floating Design Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    width: 80px;
    height: 50px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 6px;
    display: flex;
    gap: 6px;
    animation: floatCard 8s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
}

.floating-card.card-3 {
    top: 60%;
    right: -25px;
    animation-delay: 4s;
}

.card-image {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.card-image.gym {
    background: linear-gradient(135deg, #EC4899, #BE185D);
}

.card-image.sample {
    background: linear-gradient(135deg, #1F2937, #111827);
}

.card-image.health {
    background: linear-gradient(135deg, #10B981, #059669);
}

.card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-title {
    height: 6px;
    background: #374151;
    border-radius: 2px;
}

.card-subtitle {
    height: 4px;
    background: #9CA3AF;
    border-radius: 2px;
    width: 70%;
}

/* Management Interface */
.management-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.management-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.header-logo {
    width: 24px;
    height: 8px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-radius: 4px;
}

.header-menu {
    display: flex;
    gap: 6px;
}

.menu-item {
    width: 12px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 3px;
}

.menu-item.active {
    background: #8B5CF6;
}

.management-dashboard {
    flex: 1;
    display: flex;
}

.dashboard-sidebar {
    width: 30%;
    background: #f8fafc;
    padding: 8px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-option {
    height: 10px;
    background: #e2e8f0;
    border-radius: 4px;
}

.menu-option.active {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
}

.dashboard-main {
    flex: 1;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-stats {
    display: flex;
    gap: 4px;
}

.stat-card {
    flex: 1;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 6px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    height: 8px;
    background: #8B5CF6;
    border-radius: 2px;
    width: 60%;
}

.stat-label {
    height: 4px;
    background: #cbd5e1;
    border-radius: 2px;
    width: 80%;
}

.dashboard-chart {
    flex: 1;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    align-items: end;
}

.chart-bars {
    display: flex;
    gap: 3px;
    align-items: end;
    width: 100%;
    height: 100%;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-radius: 2px 2px 0 0;
    min-height: 20%;
}

/* Benefit Content */
.benefit-content {
    text-align: center;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Benefits CTA */
.benefits-cta {
    text-align: center;
}

.btn-benefits {
background: white !important;
    color: #8B5CF6;
    border: 2px solid white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;

}

.btn-benefits:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
 
}

/* Animations */
@keyframes floatCard {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) rotate(2deg);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-title {
        font-size: 2.5rem;
    }
    
    .benefit-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-header {
        margin-bottom: 40px;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-image {
        height: 200px;
    }
    
    .device-mockup {
        transform: scale(0.8);
    }
    
    .floating-card {
        transform: scale(0.8);
    }
    
    .benefit-title {
        font-size: 1.3rem;
    }
    
    .benefit-description {
        font-size: 0.9rem;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 3rem 0;
    }
    
    .benefits-title {
        font-size: 1.75rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .benefit-image {
        height: 200px;
    }
    
    .device-mockup {
        transform: scale(0.8);
    }
    
    .floating-card {
        display: none;
    }
    
    .btn-benefits {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ¿Para quién es Master Creativo? Section */
.target-audience-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

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

.target-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Geometric Background */
.geometric-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    animation: floatGeometric 8s ease-in-out infinite;
}

.shape-pink {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #EC4899, #DB2777);
    top: 10%;
    left: -50px;
    animation-delay: 0s;
}

.shape-orange {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #F97316, #EA580C);
    bottom: 20%;
    right: -30px;
    animation-delay: 2s;
}

.shape-yellow {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

/* Dotted Lines */
.dotted-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.dotted-line {
    position: absolute;
    width: 300px;
    height: 50px;
    opacity: 0.6;
}

.line-top {
    top: 15%;
    left: 10%;
    animation: dashMove 6s linear infinite;
}

.line-bottom {
    bottom: 25%;
    right: 10%;
    animation: dashMove 6s linear infinite reverse;
    animation-delay: 2s;
}

/* Woman Illustration */
.woman-illustration {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.woman-figure {
    position: relative;
    width: 120px;
    height: 300px;
    animation: floatWoman 6s ease-in-out infinite;
}

/* Woman Body */
.woman-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 180px;
}

.sweater {
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    border-radius: 40px 40px 20px 20px;
    position: relative;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.sweater::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 70px;
    background: linear-gradient(135deg, #9333EA, #8B5CF6);
    border-radius: 30px 30px 15px 15px;
}

.jeans {
    width: 70px;
    height: 80px;
    background: linear-gradient(135deg, #E5E7EB, #D1D5DB);
    border-radius: 35px 35px 8px 8px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Woman Head */
.woman-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
}

.hair {
    width: 60px;
    height: 70px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 30px 30px 25px 25px;
    position: relative;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.hair::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -8px;
    width: 25px;
    height: 40px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 20px 15px 15px 20px;
    transform: rotate(-15deg);
}

.hair::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -8px;
    width: 25px;
    height: 40px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 15px 20px 20px 15px;
    transform: rotate(15deg);
}

.face {
    width: 45px;
    height: 50px;
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    border-radius: 22px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.face::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 12px;
    width: 4px;
    height: 4px;
    background: #374151;
    border-radius: 50%;
    box-shadow: 16px 0 0 #374151;
}

.face::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background: #EC4899;
    border-radius: 0 0 12px 12px;
}

/* Woman Arms */
.woman-arms {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 80px;
}

.arm {
    position: absolute;
    width: 25px;
    height: 60px;
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.left-arm {
    left: 0;
    transform: rotate(-30deg);
    transform-origin: top center;
    animation: waveArm 4s ease-in-out infinite;
}

.right-arm {
    right: 0;
    transform: rotate(20deg);
    transform-origin: top center;
    animation: waveArm 4s ease-in-out infinite 2s;
}

.hand {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.phone {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 20px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.phone::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 1px;
    right: 1px;
    bottom: 3px;
    background: white;
    border-radius: 2px;
}

/* Target Text Content */
.target-text {
    max-width: 500px;
}

.target-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.target-list {
    margin-bottom: 3rem;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
   
    border-radius: 15px;

    transition: all 0.3s ease;
    
}

.target-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: #8B5CF6;
}

.target-item:nth-child(1) {
    border-left-color: #8B5CF6;
}

.target-item:nth-child(2) {
    border-left-color: #EC4899;
}

.target-item:nth-child(3) {
    border-left-color: #F59E0B;
}

.target-item:nth-child(4) {
    border-left-color: #10B981;
}

.target-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
    position: relative;
}

.target-item:nth-child(1) .target-bullet {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.target-item:nth-child(2) .target-bullet {
    background: linear-gradient(135deg, #EC4899, #DB2777);
}

.target-item:nth-child(3) .target-bullet {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.target-item:nth-child(4) .target-bullet {
    background: linear-gradient(135deg, #10B981, #059669);
}

.target-content-text {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
    flex: 1;
}

.target-content-text strong {
    color: #1a202c;
    font-weight: 700;
}

/* Target CTA */
.target-cta {
    text-align: left;
}

.btn-target {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    border: 2px solid transparent;
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-target::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EC4899, #F59E0B);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-target:hover::before {
    left: 0;
}

.btn-target:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

/* Animations */
@keyframes floatGeometric {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

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

@keyframes waveArm {
    0%, 100% { 
        transform: rotate(-30deg);
    }
    50% { 
        transform: rotate(-45deg);
    }
}

.right-arm {
    animation-name: waveArmRight;
}

@keyframes waveArmRight {
    0%, 100% { 
        transform: rotate(20deg);
    }
    50% { 
        transform: rotate(35deg);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .target-content {
        gap: 3rem;
    }
    
    .target-title {
        font-size: 2.25rem;
    }
    
    .target-image {
        height: 400px;
    }
    
    .woman-figure {
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .target-audience-section {
        padding: 4rem 0;
    }
    
    .target-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .target-text {
        max-width: none;
    }
    
    .target-title {
        font-size: 2rem;
    }
    
    .target-image {
        height: 350px;
        order: -1;
    }
    
    .woman-figure {
        transform: scale(0.8);
    }
    
    .geometric-shape {
        transform: scale(0.8);
    }
    
    .target-item {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .target-content-text {
        font-size: 1rem;
    }
    
    .target-cta {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .target-audience-section {
        padding: 3rem 0;
    }
    
    .target-title {
        font-size: 1.75rem;
    }
    
    .target-image {
        height: 300px;
    }
    
    .woman-figure {
        transform: scale(0.7);
    }
    
    .target-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .target-bullet {
        margin-top: 0;
        align-self: center;
    }
    
    .target-content-text {
        font-size: 0.95rem;
    }
    
    .btn-target {
        padding: 0.875rem 2rem;
        font-size: 1.1rem;
    }
    
    .geometric-shape {
        opacity: 0.4;
    }
    
    .dotted-line {
        opacity: 0.3;
    }
}

/* Marketing de Lealtad Section */
.loyalty-marketing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.loyalty-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.loyalty-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.loyalty-subtitle {
    margin-bottom: 2rem;
}

.subtitle-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4a5568;
}

/* GANA Text with Typewriter Animation */
.loyalty-visual {
    position: relative;
    margin-bottom: 4rem;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gana-container {
    position: relative;
    z-index: 1;
}

.gana-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.gana-letter {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(50px);
    animation: typewriterLetter 0.8s ease-out forwards;
    text-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

.gana-letter:nth-child(1) {
    animation-delay: 0.2s;
}

.gana-letter:nth-child(2) {
    animation-delay: 0.6s;
}

.gana-letter:nth-child(3) {
    animation-delay: 1.0s;
}

.gana-letter:nth-child(4) {
    animation-delay: 1.4s;
}

.typing-cursor {
    width: 4px;
    height: 8rem;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    margin-left: 1rem;
    animation: blinkCursor 1s infinite, fadeInCursor 0.5s ease-out 1.8s forwards;
    opacity: 0;
}

/* Jumping People */
.jumping-people {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 10;
}

.person {
    position: relative;
    width: 80px;
    height: 200px;
    animation: jumpPerson 2s ease-in-out infinite;
}

.woman-person {
    animation-delay: 0s;
    left: -100px;
}

.man-person {
    animation-delay: 1s;
    right: -100px;
}

/* Person Body Parts */
.person-body {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 80px;
}

/* Woman Styling */
.denim-jacket {
    width: 50px;
    height: 45px;
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    border-radius: 25px 25px 8px 8px;
    position: relative;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.white-shirt {
    width: 40px;
    height: 35px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 20px 20px 5px 5px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.woman-jeans {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #1E40AF, #1E3A8A);
    border-radius: 22px 22px 5px 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.woman-shoes {
    width: 35px;
    height: 12px;
    background: linear-gradient(135deg, #6B7280, #4B5563);
    border-radius: 15px;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Man Styling */
.plaid-shirt {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    background-image: 
        linear-gradient(45deg, #F59E0B 25%, transparent 25%),
        linear-gradient(-45deg, #F59E0B 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #F59E0B 75%),
        linear-gradient(-45deg, transparent 75%, #F59E0B 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
    border-radius: 25px 25px 8px 8px;
    position: relative;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.man-jeans {
    width: 45px;
    height: 30px;
    background: linear-gradient(135deg, #1E40AF, #1E3A8A);
    border-radius: 22px 22px 5px 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.man-shoes {
    width: 38px;
    height: 14px;
    background: linear-gradient(135deg, #92400E, #78350F);
    border-radius: 18px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(146, 64, 14, 0.3);
}

/* Heads */
.person-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 50px;
}

.woman-hair {
    width: 40px;
    height: 35px;
    background: linear-gradient(135deg, #92400E, #78350F);
    border-radius: 20px 20px 15px 15px;
    position: relative;
    box-shadow: 0 2px 8px rgba(146, 64, 14, 0.3);
}

.man-hair {
    width: 40px;
    height: 25px;
    background: linear-gradient(135deg, #92400E, #78350F);
    border-radius: 20px 20px 8px 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(146, 64, 14, 0.3);
}

.woman-face, .man-face {
    width: 35px;
    height: 40px;
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    border-radius: 17px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.man-face {
    height: 35px;
}

/* Glasses for man */
.glasses {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 8px;
    border: 2px solid #374151;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.3);
}

.glasses::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -15px;
    width: 12px;
    height: 8px;
    border: 2px solid #374151;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.3);
}

.glasses::after {
    content: '';
    position: absolute;
    top: 2px;
    left: -3px;
    width: 4px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
}

/* Arms */
.person-arms {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
}

.arm {
    position: absolute;
    width: 18px;
    height: 40px;
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    border-radius: 9px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.left-arm-woman, .left-arm-man {
    left: 0;
    transform: rotate(-45deg);
    transform-origin: top center;
    animation: waveArmJump 2s ease-in-out infinite;
}

.right-arm-woman, .right-arm-man {
    right: 0;
    transform: rotate(45deg);
    transform-origin: top center;
    animation: waveArmJump 2s ease-in-out infinite 0.5s;
}

/* Legs */
.person-legs {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
}

.leg {
    position: absolute;
    width: 16px;
    height: 50px;
    background: linear-gradient(135deg, #1E40AF, #1E3A8A);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
}

.left-leg-woman, .left-leg-man {
    left: 8px;
    animation: kickLeg 2s ease-in-out infinite;
}

.right-leg-woman, .right-leg-man {
    right: 8px;
    animation: kickLeg 2s ease-in-out infinite 0.3s;
}

/* Description */
.loyalty-description {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.loyalty-text {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.6;
    text-align: center;
}

.loyalty-text strong {
    color: #1a202c;
    font-weight: 700;
}

.highlight-badge-loyalty {
    background: linear-gradient(135deg, #EC4899, #F59E0B);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 0.5rem;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

/* CTA */
.loyalty-cta {
    text-align: center;
}

.btn-loyalty {
    background: transparent;
    color: #8B5CF6;
    border: 2px solid #8B5CF6;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-loyalty::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-loyalty:hover::before {
    left: 0;
}

.btn-loyalty:hover {
    color: white;
    border-color: #8B5CF6;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.3);
}

/* Animations */
@keyframes typewriterLetter {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes blinkCursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes fadeInCursor {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes jumpPerson {
    0%, 100% { 
        transform: translateY(0px);
    }
    25% { 
        transform: translateY(-30px);
    }
    50% { 
        transform: translateY(-50px);
    }
    75% { 
        transform: translateY(-30px);
    }
}

@keyframes waveArmJump {
    0%, 100% { 
        transform: rotate(-45deg);
    }
    50% { 
        transform: rotate(-60deg);
    }
}

.right-arm-woman, .right-arm-man {
    animation-name: waveArmJumpRight;
}

@keyframes waveArmJumpRight {
    0%, 100% { 
        transform: rotate(45deg);
    }
    50% { 
        transform: rotate(60deg);
    }
}

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

/* Responsive */
@media (max-width: 1024px) {
    .loyalty-title {
        font-size: 2.5rem;
    }
    
    .gana-letter {
        font-size: 6rem;
    }
    
    .typing-cursor {
        height: 6rem;
    }
    
    .loyalty-visual {
        height: 350px;
    }
    
    .jumping-people {
        gap: 1rem;
    }
    
    .person {
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .loyalty-marketing-section {
        padding: 4rem 0;
    }
    
    .loyalty-title {
        font-size: 2rem;
    }
    
    .subtitle-text {
        font-size: 1.25rem;
    }
    
    .gana-letter {
        font-size: 4rem;
        gap: 0.25rem;
    }
    
    .typing-cursor {
        height: 4rem;
        width: 3px;
    }
    
    .loyalty-visual {
        height: 300px;
    }
    
    .person {
        transform: scale(0.8);
    }
    
    .woman-person {
        left: -80px;
    }
    
    .man-person {
        right: -80px;
    }
    
    .loyalty-text {
        font-size: 1.1rem;
    }
    
    .highlight-badge-loyalty {
        display: block;
        margin: 0.5rem auto 0;
        text-align: center;
        max-width: fit-content;
    }
}

@media (max-width: 480px) {
    .loyalty-marketing-section {
        padding: 3rem 0;
    }
    
    .loyalty-title {
        font-size: 1.75rem;
    }
    
    .subtitle-text {
        font-size: 1.1rem;
    }
    
    .gana-letter {
        font-size: 3rem;
    }
    
    .typing-cursor {
        height: 3rem;
        width: 2px;
        margin-left: 0.5rem;
    }
    
    .loyalty-visual {
        height: 250px;
    }
    
    .person {
        transform: scale(0.7);
    }
    
    .woman-person {
        left: -60px;
    }
    
    .man-person {
        right: -60px;
    }
    
    .loyalty-text {
        font-size: 1rem;
    }
    
    .btn-loyalty {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e2e8f0" fill-opacity="0.3"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    opacity: 0.5;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    color: #667eea;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

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

.author-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 5px 0;
}

.author-role {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.testimonials-cta {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.testimonials-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 30px;
}

.btn-testimonials {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-testimonials::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.5s ease;
}

.btn-testimonials:hover::before {
    left: 100%;
}

.btn-testimonials:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonials-header {
        margin-bottom: 60px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .avatar-circle {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-role {
        font-size: 0.85rem;
    }
    
    .testimonials-cta {
        margin-top: 60px;
    }
    
    .testimonials-cta h3 {
        font-size: 1.5rem;
    }
    
    .btn-testimonials {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Testimonials Carousel Styles */
.testimonials-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto 60px auto;
    z-index: 2;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    height: auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    height: 100%;
}

.testimonial-slide {
    min-width: 100%;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonials-carousel .testimonial-card {
    background: white;
    padding: 30px 25px;
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    border: none;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonials-carousel .testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-carousel .testimonial-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.testimonials-carousel .quote-icon {
    color: #667eea;
    margin-bottom: 20px;
    opacity: 0.8;
    display: flex;
    justify-content: center;
}

.testimonials-carousel .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 400;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-carousel .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonials-carousel .avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.testimonials-carousel .testimonial-card:hover .avatar-circle {
    transform: scale(1.1);
}

.testimonials-carousel .author-info {
    text-align: left;
}

.testimonials-carousel .author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 5px 0;
}

.testimonials-carousel .author-role {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.carousel-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: #667eea;
    pointer-events: all;
    position: relative;
}

.carousel-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.3);
}

.carousel-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-indicator:hover {
    background: #94a3b8;
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.carousel-indicator.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: pulse-indicator 2s infinite;
}

@keyframes pulse-indicator {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .testimonials-carousel {
        margin-bottom: 60px;
    }
    
    .testimonials-carousel .testimonial-card {
        padding: 50px 40px;
        min-height: 380px;
    }
    
    .testimonials-carousel .testimonial-text {
        font-size: 1.2rem;
    }
    
    .carousel-btn.prev {
        left: -20px;
    }
    
    .carousel-btn.next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        margin: 0 15px 40px 15px;
        max-width: 100%;
    }
    
    .testimonials-carousel .testimonial-card {
        padding: 20px 15px;
        min-height: 220px;
        border-radius: 10px;
    }
    
    .testimonials-carousel .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .testimonials-carousel .quote-icon {
        margin-bottom: 15px;
        font-size: 1.5rem;
    }
    
    .testimonials-carousel .testimonial-author {
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }
    
    .testimonials-carousel .author-info {
        text-align: left;
    }
    
    .testimonials-carousel .avatar-circle {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .testimonials-carousel .author-name {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .testimonials-carousel .author-role {
        font-size: 0.8rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: -45px;
    }
    
    .carousel-btn.next {
        right: -45px;
    }
    
    .carousel-indicators {
        margin-top: 20px;
    }
    
    .carousel-indicator {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 1.75rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .avatar-circle {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .testimonials-cta h3 {
        font-size: 1.25rem;
    }
    
    .btn-testimonials {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .testimonials-carousel {
        margin: 0 10px 30px 10px;
    }
    
    .testimonials-carousel .testimonial-card {
        padding: 15px 12px;
        min-height: 180px;
        border-radius: 8px;
    }
    
    .testimonials-carousel .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .testimonials-carousel .quote-icon {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }
    
    .testimonials-carousel .avatar-circle {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .testimonials-carousel .author-name {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
    
    .testimonials-carousel .author-role {
        font-size: 0.7rem;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .carousel-btn.prev {
        left: -35px;
    }
    
    .carousel-btn.next {
        right: -35px;
    }
    
    .carousel-indicator {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
}

/* ===== BOOTSTRAP CAROUSEL STYLES ===== */
.testimonials-bootstrap-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto 60px auto;
    z-index: 2;
}

.testimonials-bootstrap-carousel .carousel-inner {
    border-radius: 15px;
    overflow: hidden;
}

.testimonials-bootstrap-carousel .carousel-item {
    padding: 0;
}

.testimonials-bootstrap-carousel .testimonial-card {
    background: white;
    padding: 30px 25px;
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    border: none;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonials-bootstrap-carousel .quote-icon {
    color: #667eea;
    margin-bottom: 20px;
    opacity: 0.8;
    display: flex;
    justify-content: center;
}

.testimonials-bootstrap-carousel .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 400;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.testimonials-bootstrap-carousel .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.testimonials-bootstrap-carousel .avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.testimonials-bootstrap-carousel .author-info {
    text-align: left;
}

.testimonials-bootstrap-carousel .author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 5px 0;
}

.testimonials-bootstrap-carousel .author-role {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Controles de Bootstrap personalizados */
.testimonials-bootstrap-carousel .carousel-control-prev,
.testimonials-bootstrap-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.testimonials-bootstrap-carousel .carousel-control-prev {
    left: -70px;
}

.testimonials-bootstrap-carousel .carousel-control-next {
    right: -70px;
}

.testimonials-bootstrap-carousel .carousel-control-prev:hover,
.testimonials-bootstrap-carousel .carousel-control-next:hover {
    opacity: 1;
    background: #667eea;
    border-color: #667eea;
}

.testimonials-bootstrap-carousel .carousel-control-prev-icon,
.testimonials-bootstrap-carousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
}

.testimonials-bootstrap-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.testimonials-bootstrap-carousel .carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* Indicadores de Bootstrap personalizados */
.testimonials-bootstrap-carousel .carousel-indicators {
    position: static;
    margin: 30px 0 0 0;
    justify-content: center;
}

.testimonials-bootstrap-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(102, 126, 234, 0.3);
    border: none;
    transition: all 0.3s ease;
}

.testimonials-bootstrap-carousel .carousel-indicators button.active {
    background-color: #667eea;
    transform: scale(1.2);
}

/* Responsive para Bootstrap Carousel */
@media (max-width: 768px) {
    .testimonials-bootstrap-carousel {
        margin: 0 15px 40px 15px;
        max-width: 100%;
    }
    
    .testimonials-bootstrap-carousel .testimonial-card {
        padding: 20px 15px;
        min-height: 220px;
        border-radius: 10px;
    }
    
    .testimonials-bootstrap-carousel .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .testimonials-bootstrap-carousel .quote-icon {
        margin-bottom: 15px;
    }
    
    .testimonials-bootstrap-carousel .avatar-circle {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .testimonials-bootstrap-carousel .author-name {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .testimonials-bootstrap-carousel .author-role {
        font-size: 0.8rem;
    }
    
    .testimonials-bootstrap-carousel .carousel-control-prev,
    .testimonials-bootstrap-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-bootstrap-carousel .carousel-control-prev {
        left: -50px;
    }
    
    .testimonials-bootstrap-carousel .carousel-control-next {
        right: -50px;
    }
    
    .testimonials-bootstrap-carousel .carousel-indicators {
        margin-top: 20px;
    }
    
    .testimonials-bootstrap-carousel .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .testimonials-bootstrap-carousel {
        margin: 0 10px 30px 10px;
    }
    
    .testimonials-bootstrap-carousel .testimonial-card {
        padding: 15px 12px;
        min-height: 180px;
        border-radius: 8px;
    }
    
    .testimonials-bootstrap-carousel .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .testimonials-bootstrap-carousel .quote-icon {
        margin-bottom: 10px;
    }
    
    .testimonials-bootstrap-carousel .avatar-circle {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .testimonials-bootstrap-carousel .author-name {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
    
    .testimonials-bootstrap-carousel .author-role {
        font-size: 0.7rem;
    }
    
    .testimonials-bootstrap-carousel .carousel-control-prev,
    .testimonials-bootstrap-carousel .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .testimonials-bootstrap-carousel .carousel-control-prev {
        left: -40px;
    }
    
    .testimonials-bootstrap-carousel .carousel-control-next {
        right: -40px;
    }
    
    .testimonials-bootstrap-carousel .carousel-indicators button {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
}

/* ===== PRICING TABLE SECTION ===== */
.pricing-table-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-table-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow-x: auto; /* Cambiar de hidden a auto para permitir scroll horizontal */
    overflow-y: hidden;
    /* Agregar scrollbar personalizada para mejor apariencia */
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f7fafc;
}

/* Imagen móvil para reemplazar la tabla */
.pricing-mobile-image {
    display: none; /* Oculto por defecto */
    text-align: center;
    margin: 40px 0;
}

.mobile-pricing-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Webkit scrollbar styling para browsers webkit */
.pricing-table-container::-webkit-scrollbar {
    height: 8px;
}

.pricing-table-container::-webkit-scrollbar-track {
    background: #f7fafc;
}

.pricing-table-container::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}

.pricing-table-container::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr 1fr 1fr;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
}

.table-header > div {
    padding: 24px 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.table-header > div:last-child {
    border-right: none;
}

.table-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.plan-icon {
    margin-bottom: 8px;
}

.plan-bars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
}

.plan-bars .bar {
    width: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.plan-pro .bar-1 { height: 10px; }
.plan-pro .bar-2 { height: 16px; }
.plan-pro .bar-3 { height: 12px; }

.plan-premium .bar-1 { height: 12px; }
.plan-premium .bar-2 { height: 20px; }
.plan-premium .bar-3 { height: 16px; }

.table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background-color: #f8fafc;
}

.table-row.total-row {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    font-weight: 700;
    border-bottom: none;
}

.table-row > div {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e2e8f0;
}

.table-row > div:last-child {
    border-right: none;
}

.service-cell {
    justify-content: flex-start !important;
}

.service-name {
    font-weight: 600;
    color: #1a202c;
}

.total-label {
    font-size: 1.2rem;
    color: #4c51bf;
}

.price-cell {
    text-align: center;
}

.price {
    font-weight: 600;
    color: #2d3748;
}

.total-price {
    font-size: 1.1rem;
    color: #e53e3e;
}

.app-cell {
    padding: 12px 16px !important;
}

.app-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 200px;
}

.app-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Tool Icons with Reliable Image Sources */
.app-icon.manychat { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/manychat.svg');
    background-color: #6563ff;
}

.app-icon.clickfunnels { 
    background-image: url('https://logo.clearbit.com/clickfunnels.com');
    background-color: #0066cc;
}

.app-icon.monkeylearn { 
    background-image: url('https://logo.clearbit.com/monkeylearn.com');
    background-color: #ff6b35;
}

.app-icon.hubspot { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/hubspot.svg');
    background-color: #ff7a59;
}

.app-icon.zapier { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/zapier.svg');
    background-color: #ff4a00;
}

.app-icon.buffer { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/buffer.svg');
    background-color: #168eea;
}

.app-icon.hootsuite { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/hootsuite.svg');
    background-color: #143ce8;
}

.app-icon.meetedgar { 
    background-image: url('https://logo.clearbit.com/meetedgar.com');
    background-color: #5a67d8;
}

.app-icon.buzzsumo { 
    background-image: url('https://logo.clearbit.com/buzzsumo.com');
    background-color: #ff6b35;
}

.app-icon.calendly { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/calendly.svg');
    background-color: #006bff;
}

.app-icon.pagespeed { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/pagespeedinsights.svg');
    background-color: #4285f4;
}

.app-icon.googlecalendar { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/googlecalendar.svg');
    background-color: #4285f4;
}

.app-icon.shopify { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/shopify.svg');
    background-color: #7ab55c;
}

.app-icon.brandfolder { 
    background-image: url('https://logo.clearbit.com/brandfolder.com');
    background-color: #40d1f5;
}

.app-icon.pipedrive { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/pipedrive.svg');
    background-color: #28a745;
}

.app-icon.adobe { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/adobe.svg');
    background-color: #ff0000;
}

.app-icon.kartra { 
    background-image: url('https://logo.clearbit.com/kartra.com');
    background-color: #ff6b35;
}

.app-icon.wix { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/wix.svg');
    background-color: #0c6ebd;
}

.app-icon.squarespace { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/squarespace.svg');
    background-color: #000000;
}

.app-icon.wordpress { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/wordpress.svg');
    background-color: #21759b;
}

.app-icon.activecampaign { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/activecampaign.svg');
    background-color: #356ae6;
}

.app-icon.mailchimp { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/mailchimp.svg');
    background-color: #ffe01b;
}

.app-icon.getresponse { 
    background-image: url('https://logo.clearbit.com/getresponse.com');
    background-color: #00baff;
}

.app-icon.convertkit { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/convertkit.svg');
    background-color: #fb6970;
}

.app-icon.kajabi { 
    background-image: url('https://logo.clearbit.com/kajabi.com');
    background-color: #ff6b35;
}

.app-icon.systeme { 
    background-image: url('https://logo.clearbit.com/systeme.io');
    background-color: #ff6b35;
}

.app-icon.gohighlevel { 
    background-image: url('https://logo.clearbit.com/gohighlevel.com');
    background-color: #7c3aed;
}

.app-icon.skype { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/skype.svg');
    background-color: #00aff0;
}

.app-icon.writesonic { 
    background-image: url('https://logo.clearbit.com/writesonic.com');
    background-color: #6366f1;
}

.app-icon.whatsapp { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/whatsapp.svg');
    background-color: #25d366;
}

.app-icon.teachable { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/teachable.svg');
    background-color: #fd8f28;
}

.app-icon.thinkific { 
    background-image: url('https://logo.clearbit.com/thinkific.com');
    background-color: #ff6b35;
}

.app-icon.hotmart { 
    background-image: url('https://logo.clearbit.com/hotmart.com');
    background-color: #ff6b35;
}

.app-icon.circle { 
    background-image: url('https://logo.clearbit.com/circle.so');
    background-color: #1a73e8;
}

.app-icon.samcart { 
    background-image: url('https://logo.clearbit.com/samcart.com');
    background-color: #ff6b35;
}

.app-icon.mighty { 
    background-image: url('https://logo.clearbit.com/mightynetworks.com');
    background-color: #6366f1;
}

.app-icon.discord { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/discord.svg');
    background-color: #5865f2;
}

.app-icon.builderall { 
    background-image: url('https://logo.clearbit.com/builderall.com');
    background-color: #ff6b35;
}

.app-icon.keap { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/keap.svg');
    background-color: #7c3aed;
}

.app-icon.trustpilot { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/trustpilot.svg');
    background-color: #00b67a;
}

.app-icon.groovefunnels { 
    background-image: url('https://logo.clearbit.com/groovefunnels.com');
    background-color: #ff6b35;
}

.app-icon.openai { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/openai.svg');
    background-color: #412991;
}

.app-icon.closerscopy { 
    background-image: url('https://logo.clearbit.com/closerscopy.com');
    background-color: #6366f1;
}

.app-icon.googleworkspace { 
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v15/icons/googleworkspace.svg');
    background-color: #4285f4;
}

/* Fallback styles for better reliability */
.app-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.app-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Error handling - if image fails to load, show colored background */
.app-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-icon:not([style*="background-image"])::after {
    opacity: 1;
}

.plan-cell {
    justify-content: center;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.check-icon.inactive {
    background: #e5e7eb;
}

.check-icon.active::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.check-icon.inactive::after {
    content: '✗';
    color: #9ca3af;
    font-size: 14px;
    font-weight: 700;
}

.plan-price {
    font-size: 16px;
    font-weight: 700;
    color: #8B5CF6;
}

.pricing-cta {
    margin-top: 60px;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 16px 0;
}

.cta-description {
    font-size: 18px;
    color: #64748b;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-pricing-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-pricing-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-pricing-primary:hover::before {
    opacity: 1;
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-pricing-secondary {
    background: transparent;
    color: #8B5CF6;
    padding: 16px 32px;
    border: 2px solid #8B5CF6;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing-secondary:hover {
    background: #8B5CF6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

@media (max-width: 1024px) {
    .pricing-title {
        font-size: 40px;
    }
    
    .pricing-table-container {
        margin: 0 20px;
    }
    
    .table-header h3 {
        font-size: 14px;
    }
    
    .app-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-table-section {
        padding: 60px 0 80px 0; /* Aumentar padding inferior para el mensaje */
    }
    
    .pricing-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .pricing-title {
        font-size: 32px;
    }
    
    .pricing-subtitle {
        font-size: 16px;
    }
    
    /* Ocultar la tabla en móvil */
    .pricing-table-container {
        display: none;
    }
    
    /* Mostrar la imagen en móvil */
    .pricing-mobile-image {
        display: block;
    }
    
    .mobile-pricing-img {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-pricing-primary,
    .btn-pricing-secondary {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .pricing-table-section {
        padding: 40px 0 70px 0; /* Aumentar padding inferior para el mensaje */
    }
    
    .pricing-title {
        font-size: 28px;
    }
    
    /* Mantener la imagen oculta en móvil */
    .pricing-table-container {
        display: none;
    }
    
    /* Mostrar la imagen en móvil */
    .pricing-mobile-image {
        display: block;
        margin: 30px 0;
    }
    
    .mobile-pricing-img {
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
} 

/* ===== PRICING CARDS SECTION ===== */
.pricing-cards-section {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-cards-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-cards-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.pricing-cards-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Plan Básico - Fondo Oscuro */
.pricing-card.basic-card {
    background: #2d3748;
    color: white;
}

/* Plan Silver - Fondo Claro */
.pricing-card.silver-card {
    background: #f7fafc;
    color: #2d3748;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    margin-bottom: 32px;
}

.card-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-bars {
    display: flex;
    gap: 3px;
    align-items: end;
}

.logo-bars .bar {
    width: 4px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Barras para plan básico */
.basic-bars .bar {
    background: rgba(255, 255, 255, 0.7);
}

.basic-bars .bar-1 { height: 12px; }
.basic-bars .bar-2 { height: 20px; }
.basic-bars .bar-3 { height: 16px; }

/* Barras para plan silver */
.silver-bars .bar {
    background: #4a5568;
}

.silver-bars .bar-1 { height: 14px; }
.silver-bars .bar-2 { height: 24px; }
.silver-bars .bar-3 { height: 18px; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text .brand {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Texto para plan básico */
.basic-card .logo-text .brand {
    color: rgba(255, 255, 255, 0.8);
}

.basic-card .logo-text .member {
    color: white;
    font-weight: 700;
}

/* Texto para plan silver */
.silver-card .logo-text .brand {
    color: #718096;
}

.logo-text .member {
    font-size: 16px;
    font-weight: 700;
    margin-top: 2px;
}

.silver-card .logo-text .member {
    color: #2d3748;
}

.card-pricing {
    margin-bottom: 32px;
    text-align: left;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 18px;
    font-weight: 500;
    color: inherit;
    opacity: 0.8;
}

.price-annual {
    font-size: 16px;
    opacity: 0.7;
    font-weight: 500;
}

.card-button {
    margin-bottom: 32px;
}

.btn-card {
    width: 100%;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* Botón para plan básico */
.basic-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.basic-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Botón para plan silver */
.silver-btn {
    background: #4a5568;
    color: white;
    border: 2px solid #4a5568;
}

.silver-btn:hover {
    background: #2d3748;
    border-color: #2d3748;
    transform: translateY(-2px);
}

.card-features {
    text-align: left;
}

.features-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    padding-left: 24px;
}

.features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 16px;
    font-weight: bold;
}

/* Bullets para plan básico */
.basic-card .features-list li::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Bullets para plan silver */
.silver-card .features-list li::before {
    color: #4a5568;
}

.features-list li strong {
    font-weight: 700;
}

.card-background-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 0.05;
    background: radial-gradient(circle, currentColor 1px, transparent 1px);
    background-size: 20px 20px;
}

.silver-card .card-background-pattern {
    opacity: 0.03;
}

.pricing-card > * {
    position: relative;
    z-index: 2;
}

.pricing-cards-footer {
    text-align: center;
    margin-top: 40px;
}

.footer-note {
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

/* ===== PRICING TOGGLE SWITCH ===== */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 8px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.toggle-label.active {
    color: #2d3748;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.4s ease;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background: white;
    transition: all 0.4s ease;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-slider {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.3);
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-discount {
    position: absolute;
    top: -12px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    transform: scale(0.8);
    opacity: 0.6;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.toggle-discount.show {
    transform: scale(1);
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Pricing animations */
.pricing-card {
    transition: all 0.3s ease;
}

/* Responsive pricing toggle */
@media (max-width: 768px) {
    .pricing-toggle-container {
        margin: 30px 0;
    }
    
    .pricing-toggle {
        padding: 6px 20px;
        gap: 12px;
    }
    
    .toggle-label {
        font-size: 14px;
    }
    
    .toggle-switch {
        width: 44px;
        height: 22px;
    }
    
    .toggle-slider:before {
        height: 18px;
        width: 18px;
    }
    
    .toggle-input:checked + .toggle-slider:before {
        transform: translateX(22px);
    }
    
    .toggle-discount {
        font-size: 11px;
        padding: 3px 6px;
        top: -10px;
        right: -6px;
    }
}

@media (max-width: 480px) {
    .pricing-toggle {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
        text-align: center;
    }
    
    .toggle-label {
        font-size: 13px;
    }
    
    .toggle-switch {
        width: 40px;
        height: 20px;
        order: -1;
    }
    
    .toggle-slider:before {
        height: 16px;
        width: 16px;
    }
    
    .toggle-input:checked + .toggle-slider:before {
        transform: translateX(20px);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .pricing-cards-grid {
        max-width: 800px;
        gap: 30px;
    }
    
    .pricing-cards-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .pricing-cards-section {
        padding: 60px 0;
    }
    
    .pricing-cards-header {
        margin-bottom: 40px;
    }
    
    .pricing-cards-title {
        font-size: 2rem;
    }
    
    .pricing-cards-subtitle {
        font-size: 1rem;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .card-header {
        margin-bottom: 25px;
    }
    
    .logo-text .brand {
        font-size: 1.1rem;
    }
    
    .logo-text .member {
        font-size: 1.3rem;
    }
    
    .card-pricing {
        margin-bottom: 25px;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .currency {
        font-size: 1.3rem;
    }
    
    .period {
        font-size: 1.1rem;
    }
    
    .card-button {
        margin-bottom: 25px;
    }
    
    .btn-card {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .features-list li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .pricing-cards-section {
        padding: 50px 0;
    }
    
    .pricing-cards-title {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .logo-text .brand {
        font-size: 1rem;
    }
    
    .logo-text .member {
        font-size: 1.2rem;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .currency {
        font-size: 1.2rem;
    }
    
    .period {
        font-size: 1rem;
    }
    
    .btn-card {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .features-list li {
        font-size: 0.85rem;
        padding: 5px 0;
        padding-left: 20px;
    }
    
    .features-list li::before {
        font-size: 0.9rem;
    }
    
    .card-background-pattern {
        width: 80px;
        height: 80px;
    }
}

/* ===== FOOTER PERSONALIZADO ===== */
.site-footer-content {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 40px 0;
    margin-top: 80px;
}

.footer-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-item {
    text-align: center;
}

.footer-label {
    font-size: 16px;
    font-weight: 500;
    color: #e2e8f0;
    display: block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-label:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-contact {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-label {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .site-footer-content {
        padding: 30px 0;
        margin-top: 60px;
    }
    
    .footer-label {
        font-size: 13px;
        padding: 6px 12px;
    }
}  
