/*
Theme Name: Tu Invita Online
Theme URI: https://example.com/
Author: Tu Nombre
Author URI: https://example.com/
Description: Un tema en blanco moderno, preparado para WooCommerce y ACF.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tuinvitaonline
Tags: e-commerce, custom-fields, blank, starter-theme
*/

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* --- VARIABLES DE COLOR (EDITABLES DESDE WORDPRESS) --- */
:root {
    --color-primario: #0056b3; /* Azul corporativo */
    --color-secundario: #1d2d35; /* Gris oscuro para texto */
    --color-fondo: #fdfdfd;
    --color-texto: #1d2d35;
    --color-superficie: #ffffff; /* Color de fondo para cards, header, etc. */
    --fuente-titulos: 'Poppins', sans-serif;
    --fuente-cuerpo: 'Roboto', sans-serif;
    
    --font-size: 16px;
  --background: #ffffff;
  --foreground: oklch(0.145 0 0);
  --card: #ffffff;
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);
  --primary: #030213;
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.95 0.0058 264.53);
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --input: transparent;
  --input-background: #f3f3f5;
  --switch-background: #cbced4;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --ring: oklch(0.708 0 0);
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --radius: 0.625rem;
  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.145 0 0);
  --sidebar-primary: #030213;
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);
  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);
}

.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.145 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.145 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.985 0 0);
  --primary-foreground: oklch(0.205 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.396 0.141 25.723);
  --destructive-foreground: oklch(0.637 0.237 25.331);
  --border: oklch(0.269 0 0);
  --input: oklch(0.269 0 0);
  --ring: oklch(0.439 0 0);
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.205 0 0);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.269 0 0);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(0.269 0 0);
  --sidebar-ring: oklch(0.439 0 0);
}
}

/* --- ESTILOS PARA MODO OSCURO --- */
body.dark-mode {
    --color-fondo: #121212;
    --color-texto: #e0e0e0;
    --color-superficie: #1e1e1e;
    --color-secundario: #e0e0e0;
}

/* --- ESTILOS BASE Y RESET --- */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #374151;
    background-color: #ffffff;
    transition: background-color 0.3s, color 0.3s;
}
*, *:before, *:after { box-sizing: border-box; }
a { color: var(--color-primario); text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--fuente-titulos); margin-top: 0; color: var(--color-secundario); }
.mobil {
    display: none !important;
}
@media screen and (max-width: 782px) {
    .desktop {
        display: none!important;
    }
    .mobil {
        display: block!important;
    }
}
/* --- GRID SYSTEM DE 4 BREAKPOINTS (EL QUE CREAMOS) --- */
.container, .container-fluid { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; }
.container { max-width: 1280px; }
.row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; }
.col, [class*="col-"] { position: relative; width: 100%; padding-right: 15px; padding-left: 15px; }

/* Alineación */
.justify-content-start { justify-content: flex-start; }
.justify-content-center { justify-content: center; }
.justify-content-end { justify-content: flex-end; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }
.justify-content-evenly { justify-content: space-evenly; }

/* Columnas base (XS) */
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Tablet (SM) */
@media (min-width: 576px) {
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; } 
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Laptop (MD) */
@media (min-width: 768px) {
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Desktop (LG) */
@media (min-width: 992px) {
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}
/* --- ESTILOS DEL TEMA --- */
.text-center {
    text-align: center !important;
}
/* Header */
.site-header, .footer { background-color: var(--color-superficie); transition: background-color 0.3s; }
.header-row { align-items: center; }
.custom-logo-link img { max-height: 60px; width: auto; }
.contact-info { text-align: right; font-size: 0.9rem; }
.contact-info a { color: var(--color-secundario); }
/* --- ESTILOS PARA HEADER RESPONSIVE Y MENÚ HAMBURGUESA --- */

/* Contenedor del header para alinear verticalmente */
.header-row {
    align-items: center;
    padding: 25px 0;
}

.logo {
    display: flex;
    align-items: center;
    /* Por defecto, alineado a la izquierda en desktop */
    justify-content: flex-start;
}

/* Centrar el logo en móvil */
@media (max-width: 767px) {
    .logo {
        justify-content: center;
    }
}

/* --- Botón Hamburguesa --- */
.menu-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.menu-toggle .line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-texto); /* Usa el color de texto de tu tema */
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle .line:nth-child(1) { top: 0; }
.menu-toggle .line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle .line:nth-child(3) { bottom: 0; }

/* Animación del botón a "X" cuando está activo */
.menu-toggle.is-active .line:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.is-active .line:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .line:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }


/* --- Menú de Navegación (Móvil) --- */
@media (min-width: 768px) {
    .d-md-none {
        display: none;
    }
}
@media (max-width: 768px) {
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100%;
        background-color: var(--color-superficie);
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        padding: 60px 20px 20px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .menu-open .main-navigation {
        transform: translateX(0);
    }
    .menu-open .main-navigation ul {
    margin-top: 70px;
    }

    .main-navigation ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-navigation ul li {
        width: 100%;
        margin: 0;
    }

    .main-navigation ul a {
        padding: 15px 10px;
        width: 100%;
        border-bottom: 1px solid var(--color-borde);
    }
    .main-navigation ul li.menu-item-136 {
    margin-bottom: 5px;
    margin-top: 5px;
    }
    .main-navigation ul li.menu-item-128 {
    border: 0;
    padding: 0;
    }
    .logo.col-6.col-md-4 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    }
    .col-3.d-md-none {
    text-align: center;
    }
    .site-header.scrolled {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 1px 0px 23px -3px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 0px 23px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 0px 23px -3px rgba(0,0,0,0.75);
    }
    .scrolled .row.header-row {
    padding: 10px 0;
    }
    .scrolled .logo.col-6.col-md-4 {
    transform: scale(.9);
    }
}
/* Footer*/
.footer-v2 {
    background: #111827;
    color: white;
}
.newsletter-section {
    border-bottom: 1px solid #374151;
}
.newsletter-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
}
@media (min-width: 1024px) {
    .newsletter-content {
        grid-template-columns: 1fr 1fr;
    }
}
.newsletter-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}
.newsletter-text p {
    color: #9ca3af;
    font-size: 1.125rem;
    line-height: 1.7;
}
.newsletter-form {
    max-width: 28rem;
}
@media (min-width: 1024px) {
    .newsletter-form {
        margin-left: 3rem;
    }
}
.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
@media (max-width: 639px) {
    .input-group {
        flex-direction: column;
    }
}
.newsletter-input {
    flex: 1;
    background: #374151;
    border: 1px solid #4b5563;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.newsletter-input:focus {
    outline: none;
    border-color: #f43f5e;
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}
.newsletter-input::placeholder {
    color: #9ca3af;
}
.newsletter-disclaimer {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}
.footer-main {
    padding: 4rem 0;
}
.footer-grid {
    display: grid;
    gap: 3rem;
}
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}
.footer-brand {
    max-width: 28rem;
}
.footer-brand .logo {
    margin-bottom: 1.5rem;
}
.footer-brand .logo-text h3 {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fb7185, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.2;
}
.footer-brand .logo-text p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.2;
}
.brand-description {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.contact-item {
    display: flex;
    align-items: center;
    color: #9ca3af;
}
.contact-item svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.75rem;
    color: #f43f5e;
}
.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 1rem;
}
.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: #f43f5e;
}
.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
}
.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}
.copyright {
    display: flex;
    align-items: center;
    color: #9ca3af;
}
.copyright svg {
    width: 1rem;
    height: 1rem;
    margin: 0 0.5rem;
    color: #f43f5e;
}
.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.social-links span {
    color: #9ca3af;
    font-size: 0.875rem;
}
.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: linear-gradient(135deg, #f43f5e, #9333ea);
    color: white;
    transform: translateY(-2px);
}
/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    /*background: linear-gradient(135deg, #fb7185, #9333ea);*/
    background: linear-gradient(135deg, #007BFF, #7F00FF);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.logo-icon span {
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 800;
    /*background: linear-gradient(135deg, #dc2626, #9333ea);*/
    background: linear-gradient(135deg, #007BFF, #7F00FF);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.2;
    margin-bottom: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.2;
    margin-top: 1px;
    margin-bottom: 0;
}
/* Header 
.site-header {
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 0;
}*/
/* Menú */
.main-navigation {
    margin-left: auto;
    display: flex;
}
.main-navigation ul {
    margin: 0; 
    padding: 0; 
    list-style: none; 
    display: flex; 
    justify-content: flex-end; 
}
.main-navigation ul li { 
    margin-left: 20px;
    margin-top: auto;
    margin-bottom: auto;
}
.main-navigation ul a { 
    display: block; 
    padding: 5px; 
    font-weight: 300;
    color: oklch(.373 .034 259.733);
}
.main-navigation .btn-primary a {
    color: white;
}

/* --- ESTILOS DE LA SECCIÓN HERO ---
.hero-section {
    position: relative;
    padding: 8rem 0; /* Espaciado generoso para darle impacto */
    background-size: cover;
    background-position: center center;
    color: #ffffff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.5); Overlay oscuro semitransparente */
    z-index: 1;
}

.hero-section .container {
    position: relative; /* Asegura que el contenido esté sobre el overlay */
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem; /* Título grande y llamativo */
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff; /* Color fijo para asegurar contraste */
}

.hero-section .hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px; /* Limita el ancho del párrafo para mejor lectura */
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}
@media (max-width: 767px) {
    .hero-section {
        padding: 5rem 0;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
} */
/* Botón CTA */
.cta-button {
    display: inline-block;
    background-color: var(--color-primario);
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    transition: transform 0.2s;
}
.cta-button:hover { transform: scale(1.05); }
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.625rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(to right, #f43f5e, #9333ea);
    color: white;
    padding: 0.5rem 1.5rem;
}

.btn-primary:hover {
    background: linear-gradient(to right, #e11d48, #7c3aed);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid #fecaca;
    color: #dc2626;
    background: transparent;
}

.btn-outline:hover {
    background-color: #fef2f2;
}

.btn-gradient {
    background: linear-gradient(to right, #f43f5e, #9333ea);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #e11d48, #7c3aed);
    transform: translateY(-1px);
}
.btn-gradient-blue {
    background: linear-gradient(to right, #007BFF, #7F00FF);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-gradient-blue:hover {
    background: linear-gradient(to right, #016bde, #7104df);
    transform: translateY(-1px);
}

.btn-outline-rose {
    border: 2px solid #fecaca;
    color: #dc2626;
    background: transparent;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-outline-rose:hover {
    background-color: #fef2f2;
}

.btn-outline-grey {
    border: 2px solid #2121213d;
    color: #21212187;
    background: transparent;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-outline-grey:hover {
    background-color: #21212108;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-dark {
    background-color: #111827;
    color: white;
    width: 100%;
    padding: 0.75rem;
}

.btn-dark:hover {
    background-color: #1f2937;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-outline-footer {
    border: 1px solid #4b5563;
    color: #d1d5db;
    background: transparent;
    font-size: 0.875rem;
}

.btn-outline-footer:hover {
    background-color: #1f2937;
}
/* Contenido General */
.main-content { padding: 4rem 0; }
.footer { background: var(--color-secundario); color: #fff; padding: 2rem 0; text-align: center; }

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf2f8, #ffffff, #faf5ff);
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(251, 207, 232, 0.15), transparent 70%);
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.hero-decoration-1 {
    top: 10%;
    left: 10%;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(135deg, rgba(251, 207, 232, 0.4), rgba(196, 181, 253, 0.4));
}

.hero-decoration-2 {
    bottom: 10%;
    right: 10%;
    width: 25rem;
    height: 25rem;
    background: linear-gradient(135deg, rgba(196, 181, 253, 0.4), rgba(251, 207, 232, 0.4));
}

.hero-content {
    position: relative;
    display: grid;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        padding: 1rem 0;
    }
}

.hero-left {
    text-align: center;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-left {
        text-align: left;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fce7f3, #ede9fe);
    color: #b91c1c;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.15);
    border: 1px solid rgba(251, 207, 232, 0.3);
}

.star-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    fill: currentColor;
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Hero Title */
.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.gradient-text {
    /*background: linear-gradient(135deg, #dc2626, #9333ea, #b91c1c);*/
    background: linear-gradient(135deg, #007BFF, #9333ea, #005dc1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

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

.dark-text {
    color: #111827;
}

.gray-text {
    color: #374151;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.arrow-icon,
.play-icon {
    margin-left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-gradient:hover .arrow-icon {
    transform: translateX(4px);
}

.btn-outline-rose:hover .play-icon {
    transform: scale(1.1);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-stats {
        justify-content: flex-start;
    }
}

.stat {
    display: flex;
    align-items: center;
    color: #4b5563;
    font-weight: 500;
}

.stat-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
}

.users-icon,
.heart-icon {
    color: #f43f5e;
}

.calendar-icon {
    color: #9333ea;
}

/* Hero Right - Visual Showcase */
.hero-right {
    position: relative;
    z-index: 10;
}

.showcase-image {
    position: relative;
    background: white;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: rotate(3deg);
    transition: all 0.5s ease;
}

.showcase-image:hover {
    transform: rotate(1deg);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

.showcase-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
}

.image-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    color: white;
}

.image-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.image-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: -10px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    z-index: 20;
}

.card-1 {
    top: -1rem;
    left: -1rem;
    transform: rotate(-12deg);
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    bottom: -1rem;
    right: -1rem;
    transform: rotate(12deg);
    animation: float 3.5s ease-in-out infinite;
}

.card-3 {
    top: 50%;
    right: -2rem;
    transform: translateY(-50%) rotate(6deg);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(var(--rotation, 0deg)); }
    50% { transform: translateY(-10px) rotate(var(--rotation, 0deg)); }
}

.card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: #10b981;
    border-radius: 50%;
}

.qr-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #fb7185, #9333ea);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-icon span {
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.card-content span,
.card-stats {
    font-size: 0.875rem;
    font-weight: 600;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #9333ea;
}

.stat-label {
    font-size: 0.75rem;
    color: #4b5563;
}
/* Main Features Grid */
.main-features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .main-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .card-3 {
        right: -1rem;
    }
}
/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    /*background: linear-gradient(135deg, #fce7f3, #ede9fe);
    color: #b91c1c;*/
    background: linear-gradient(135deg, #007bff2b, #7f00ff14);
    color: #007BFF;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.section-badge svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.title-dark {
    color: #111827;
}

.title-gradient {
    /*background: linear-gradient(135deg, #dc2626, #9333ea);*/
    background: linear-gradient(135deg, #007BFF, #7F00FF);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.7;
}
.features-v2 {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white, #f9fafb);
}
.feature-card-v2 {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-rose::before {
    background: linear-gradient(135deg, #f43f5e, #ec4899);
}

.feature-purple::before {
    background: linear-gradient(135deg, #9333ea, #6366f1);
}

.feature-blue::before {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.feature-card-v2:hover::before {
    opacity: 1;
}

.feature-icon-v2 {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-rose .feature-icon-v2 {
    background: linear-gradient(135deg, #f43f5e, #ec4899);
    color: white;
}

.feature-purple .feature-icon-v2 {
    background: linear-gradient(135deg, #9333ea, #6366f1);
    color: white;
}

.feature-blue .feature-icon-v2 {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
}

.feature-card-v2:hover .feature-icon-v2 {
    transform: scale(1.1);
}

.feature-card-v2 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-card-v2 p {
    color: #4b5563;
    line-height: 1.7;
}
/* Process Section */
.process-section {
    margin-bottom: 5rem;
}

.process-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    color: #111827;
    margin-bottom: 3rem;
}

.process-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 60%;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #fecaca, #c4b5fd);
    z-index: 0;
}

@media (max-width: 767px) {
    .process-step::after {
        display: none;
    }
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #f43f5e, #9333ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    position: relative;
    z-index: 10;
}

.process-step h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #4b5563;
    font-size: 0.875rem;
}
/* Additional Features */
.additional-features {
    margin-top: 5rem;
}

.additional-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    color: #111827;
    margin-bottom: 3rem;
}

.additional-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .additional-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.additional-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

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

.additional-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    flex-shrink: 0;
}

.additional-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.additional-feature p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
}
/* Templates Section V2 */
.templates-v2 {
    padding: 2rem 0;
    background: linear-gradient(to bottom, #f9fafb, white);
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #4b5563;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #f43f5e, #9333ea);
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
}

/* Templates Grid V2 */
.templates-grid-v2 {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .templates-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .templates-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.template-card-v2 {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    group: hover;
}

.template-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.template-image-v2 {
    position: relative;
    overflow: hidden;
    height: 16rem;
}

.template-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.template-card-v2:hover .template-image-v2 img {
    transform: scale(1.1);
}

.template-overlay-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-card-v2:hover .template-overlay-v2 {
    opacity: 1;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #f43f5e, #9333ea);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.views-count {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hover-actions {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-card-v2:hover .hover-actions {
    opacity: 1;
}

.preview-btn {
    flex: 1;
    background: white;
    color: #111827;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    background: #f3f4f6;
}

.like-btn {
    background: linear-gradient(135deg, #f43f5e, #9333ea);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.like-btn:hover {
    transform: scale(1.05);
}

.template-content-v2 {
    padding: 1.5rem;
}

.template-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.template-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.category-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.category-badge.amber {
    background: #fef3c7;
    color: #92400e;
}

.category-badge.rose {
    background: #fce7f3;
    color: #be185d;
}

.category-badge.purple {
    background: #ede9fe;
    color: #7c3aed;
}

.category-badge.gray {
    background: #f3f4f6;
    color: #374151;
}

.category-badge.green {
    background: #d1fae5;
    color: #065f46;
}

.category-badge.blue {
    background: #dbeafe;
    color: #1e40af;
}

.color-indicator {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.color-indicator.amber {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.color-indicator.rose {
    background: linear-gradient(135deg, #f43f5e, #ec4899);
}

.color-indicator.purple {
    background: linear-gradient(135deg, #9333ea, #6366f1);
}

.color-indicator.gray {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.color-indicator.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.color-indicator.blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.template-content-v2 p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.use-template-btn {
    width: 100%;
    background: linear-gradient(135deg, #f43f5e, #9333ea);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.use-template-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

.use-template-btn svg {
    transition: transform 0.3s ease;
}

.use-template-btn:hover svg {
    transform: translateX(4px);
}

/* Templates CTA */
.templates-cta {
    text-align: center;
    background: linear-gradient(135deg, #fef2f2, #faf5ff);
    border-radius: 2rem;
    padding: 3rem;
    margin-top: 4rem;
}

.templates-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.templates-cta p {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

/* Pricing Section V2 */
.pricing-v2 {
    padding: 2rem 0;
    background: linear-gradient(to bottom, white, #f9fafb);
}

/* Pricing Grid V2 */
.pricing-grid-v2 {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .pricing-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card-v2 {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card-v2.popular {
    border: 2px solid #f43f5e;
    transform: scale(1.05);
}

.pricing-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-card-v2.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge-v2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f43f5e, #9333ea);
    color: white;
    text-align: center;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
}

.card-header-v2 {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
}

.card-header-v2.premium-header {
    background: linear-gradient(135deg, #fef2f2, #faf5ff);
    padding-top: 3rem;
}

.plan-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
}

.plan-icon.premium {
    background: linear-gradient(135deg, #f43f5e, #9333ea);
}

.plan-icon.enterprise {
    background: linear-gradient(135deg, #9333ea, #6366f1);
}

.card-header-v2 h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.card-header-v2 p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: #111827;
}
.currency {
    color: #4b5563;
    margin-left: 0.5rem;
    font-size: 1.125rem;
}
.period {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.plan-btn {
    margin-top: 1rem;
}
.card-content-v2 {
    padding: 2rem;
}
.features-list-v2 {
    list-style: none;
}
.features-list-v2 li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.features-list-v2 svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
/* Add-ons Section */
.addons-section {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 5rem;
}
.addons-header {
    text-align: center;
    margin-bottom: 3rem;
}
.addons-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}
.addons-header p {
    color: #4b5563;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.7;
}
.addons-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .addons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}
.addon-item:hover {
    background: #f3f4f6;
}
.addon-price {
    background: white;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}
.addons-cta {
    text-align: center;
}
/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 241, 242, 0.3) 50%, rgba(250, 245, 255, 0.3) 100%);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Card */
.service-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    border-color: #fecaca;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    color: white;
}

/* Gradient backgrounds for icons */
.gradient-purple-pink {
    background: linear-gradient(135deg, #9333ea, #ec4899);
}

.gradient-rose-orange {
    background: linear-gradient(135deg, #f43f5e, #fb923c);
}

.gradient-blue-purple {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
}

.gradient-green-emerald {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.gradient-indigo-blue {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.gradient-pink-rose {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.gradient-purple-violet {
    background: linear-gradient(135deg, #9333ea, #8b5cf6);
}

.gradient-amber-orange {
    background: linear-gradient(135deg, #f59e0b, #fb923c);
}

.gradient-teal-cyan {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
}

.gradient-red-pink {
    background: linear-gradient(135deg, #ef4444, #ec4899);
}

.gradient-slate-gray {
    background: linear-gradient(135deg, #475569, #6b7280);
}

.gradient-yellow-amber {
    background: linear-gradient(135deg, #eab308, #f59e0b);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #22c55e;
    margin-top: 0.125rem;
}

/* CTA Section */
.cta-section {
    margin-top: 4rem;
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, #f43f5e, #9333ea);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 20px 25px -5px rgba(244, 63, 94, 0.3);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons-group {
        flex-direction: row;
    }
}

.btn-white {
    background: white;
    color: #e11d48;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #fef2f2;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .services-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(250, 245, 255, 0.3) 0%, #ffffff 50%, rgba(255, 241, 242, 0.3) 100%);
}
/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
    border-color: #fecaca;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon svg {
    color: white;
}

.info-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.info-detail {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.info-description {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Main Content Grid */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .contact-content-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Form Section */
.form-section {
    width: 100%;
}

.form-card {
    background: white;
    border: 2px solid #fecaca;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #111827;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.form-group textarea {
    resize: none;
    font-family: 'Inter', sans-serif;
}

.btn-submit {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #f43f5e, #9333ea);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(244, 63, 94, 0.2);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #e11d48, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(244, 63, 94, 0.3);
}

.btn-submit svg {
    width: 16px;
    height: 16px;
}

/* Sidebar Section */
.sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sidebar-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.sidebar-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Social Card */
.social-card {
    border: 2px solid #e9d5ff;
}

.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link.instagram {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
}

.social-link.facebook {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-link.instagram .social-icon {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.social-link.facebook .social-icon {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

.social-icon svg {
    color: white;
}

.social-info {
    flex: 1;
}

.social-name {
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.125rem;
}

.social-handle {
    font-size: 0.875rem;
    color: #6b7280;
}

/* FAQ Card */
.faq-card {
    border: 2px solid #fecaca;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.faq-item h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

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

.bottom-cta .cta-content {
    background: linear-gradient(135deg, #f43f5e, #9333ea);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 20px 25px -5px rgba(244, 63, 94, 0.3);
}

.bottom-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.bottom-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Reusable gradient backgrounds */
.gradient-rose-pink {
    background: linear-gradient(135deg, #f43f5e, #ec4899);
}

.gradient-green-emerald {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.gradient-blue-purple {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
}

.gradient-amber-orange {
    background: linear-gradient(135deg, #f59e0b, #fb923c);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .contact-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .bottom-cta .cta-content {
        padding: 2rem 1.5rem;
    }

    .bottom-cta h3 {
        font-size: 1.5rem;
    }

    .bottom-cta p {
        font-size: 1rem;
    }
}
#seleccion-paquete {
    padding: 2rem 0;
}
/* Tabla*/
#comparative-table .col-4.col-sm-4.col-md-4.col-lg-4 {
    padding: 0;
}
#comparative-table .card-content-v2 {
    padding: 0;
}
#comparative-table ul {
    padding: 0;
    margin: 0;
}
#comparative-table  .features-list-v2 {
    text-align: center;
}
#comparative-table .features-list-v2 > div:nth-child(even) {
    background: #eff2f4;
}
#comparative-table .features-list-v2 > div {
    padding: 10px 20px;
    margin-bottom: 0;
}
#comparative-table .card-header-v2 {
    padding-bottom: .5rem;
    padding-top: 4rem;
}
@media (max-width: 768px) {
    #comparative-table .card-header-v2 h3 {
    font-size: 1.1rem;
    }
    #comparative-table .amount {
    font-size: 1.2rem;
    }
}
