/**
 * VitaPlena Suplementos - Master CSS Stylesheet
 * Brand colors: Primary Cyan/Blue (#2996e8), Secondary Orange (#f58a1f)
 */

:root {
    --vp-primary: #2996e8;
    --vp-primary-dark: #1274c0;
    --vp-primary-deep: #0e2a47;
    --vp-primary-light: #e0f2fe;
    --vp-orange: #f58a1f;
    --vp-orange-hover: #ea580c;
    --vp-orange-light: #fff7ed;
    --vp-text: #1e293b;
    --vp-text-muted: #64748b;
    --vp-bg-light: #f8fafc;
    --vp-bg-soft: #f1f5f9;
    --vp-border: #e2e8f0;
    --vp-white: #ffffff;
    --vp-shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --vp-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
    --vp-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.03);
    --vp-shadow-hover: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --vp-radius: 12px;
    --vp-radius-sm: 8px;
    --vp-radius-full: 9999px;
    --vp-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global resets & typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    color: var(--vp-text);
    background-color: var(--vp-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.vitaplena-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Front page full-width reset */
.home.separate-containers .site-main {
    margin: 0 !important;
}
.home.separate-containers .inside-article {
    padding: 0 !important;
}
.home .entry-header {
    display: none !important;
}
.home #right-sidebar {
    display: none !important;
}
.home .content-area {
    width: 100% !important;
}
.home .site-footer {
    display: none !important; /* Replaced by our custom rich e-commerce footer */
}
.home.separate-containers .site-content {
    padding: 0 !important;
}
.home .grid-container {
    max-width: 100% !important;
    padding: 0 !important;
}
.home #masthead .grid-container {
    max-width: 1200px !important;
    padding: 0 20px !important;
}

/* Top Bar */
.vitaplena-top-bar {
    background: linear-gradient(90deg, #0e2a47 0%, #173d63 100%);
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 2px solid var(--vp-orange);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-item.highlight strong {
    color: #fde047;
}

.top-bar-item a {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--vp-transition);
}

.top-bar-item a:hover {
    color: var(--vp-orange);
}

/* Header & Nav Adjustments */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-branding-container .site-branding {
    display: none !important;
}

.site-branding-container {
    display: flex;
    align-items: center;
}

.site-branding img, .header-image img, .site-logo img {
    max-height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
}

.menu-toggle {
    background-color: transparent !important;
    color: var(--vp-primary-deep) !important;
    border: 1px solid var(--vp-border) !important;
    border-radius: var(--vp-radius-sm);
    padding: 8px 14px !important;
    font-weight: 600;
}

.menu-toggle:hover, .menu-toggle:focus {
    background-color: var(--vp-primary-light) !important;
    color: var(--vp-primary) !important;
}

.main-navigation ul,
.main-navigation ul li {
    list-style: none !important;
    list-style-type: none !important;
}

.main-navigation .main-nav ul li a {
    font-weight: 600;
    color: var(--vp-text);
    font-size: 15px;
    padding: 0 16px;
    transition: var(--vp-transition);
}

.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li.current-menu-item > a {
    color: var(--vp-primary);
}

/* Modern Dropdown Submenus for PC */
.main-navigation ul ul.sub-menu {
    background: #ffffff !important;
    border-radius: 14px !important;
    box-shadow: 0 20px 40px -5px rgba(14, 42, 71, 0.18), 0 8px 16px -4px rgba(14, 42, 71, 0.08) !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    padding: 10px !important;
    min-width: 290px !important;
    top: 100% !important;
    left: 0 !important;
    border-top: 3px solid var(--vp-orange) !important;
}

.main-navigation ul ul.sub-menu li {
    width: 100% !important;
    display: block !important;
    margin-bottom: 4px !important;
}

.main-navigation ul ul.sub-menu li:last-child {
    margin-bottom: 0 !important;
}

.main-navigation ul ul.sub-menu li a {
    padding: 11px 16px !important;
    color: #1e293b !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.2s ease !important;
    background: transparent !important;
}

.main-navigation ul ul.sub-menu li a:hover,
.main-navigation ul ul.sub-menu li.current-menu-item a {
    background: var(--vp-primary-light) !important;
    color: var(--vp-primary-dark) !important;
    transform: translateX(4px) !important;
}

.main-navigation .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.main-navigation .menu-item-has-children > a::after {
    content: "▾";
    font-size: 13px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.main-navigation .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Cart Icon in Nav */
.vitaplena-nav-cart a.cart-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
    background: var(--vp-primary-light);
    color: var(--vp-primary-dark) !important;
    padding: 8px 16px !important;
    border-radius: var(--vp-radius-full);
    margin-left: 10px;
    transition: var(--vp-transition);
}

.vitaplena-nav-cart a.cart-link:hover {
    background: var(--vp-primary);
    color: #ffffff !important;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--vp-orange);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: var(--vp-radius-full);
    min-width: 18px;
    text-align: center;
    line-height: 16px;
}

/* Hero Section - High-End E-Commerce Banner with Contextual Orange Home Wash & Cutout Family */
.vp-hero-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    background-color: #ea580c;
}

.vp-hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.vp-hero-orange-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.90) 0%, rgba(245, 138, 31, 0.82) 50%, rgba(217, 83, 7, 0.90) 100%);
    z-index: 2;
    pointer-events: none;
}

.vp-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

/* Columna Izquierda: Textos y Acciones */
.vp-hero-text-col {
    flex: 0 0 48%;
    max-width: 550px;
    padding: 45px 0 35px 0;
    align-self: flex-end;
}

.vp-hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 7px 18px;
    border-radius: var(--vp-radius-full);
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.vp-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fef08a;
    box-shadow: 0 0 10px #fde047;
    display: inline-block;
}

.vp-hero-title {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.16;
    letter-spacing: -0.5px;
    margin: 0 0 18px 0;
    text-shadow: 0 2px 12px rgba(14, 42, 71, 0.35);
}

.vp-hero-subtitle {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0 0 32px 0;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(14, 42, 71, 0.25);
}

.vp-hero-subtitle strong {
    color: #ffffff;
    font-weight: 800;
}

.vp-hero-actions-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

/* Botón Blanco de Alto Contraste sobre Fondo Naranja */
.vp-btn-hero-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ffffff;
    color: #0e2a47 !important;
    font-size: 16px;
    font-weight: 800;
    padding: 15px 32px;
    border-radius: var(--vp-radius-full);
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22), 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: var(--vp-transition);
}

.vp-btn-hero-white:hover {
    background-color: #f8fafc;
    color: #ea580c !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.vp-btn-hero-white svg {
    color: #ea580c;
    transition: transform 0.2s ease;
}

.vp-btn-hero-white:hover svg {
    transform: translateX(4px);
}

/* Badge Píldora Blanca Traslúcida */
.vp-hero-pill-badge-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 14px 22px;
    border-radius: var(--vp-radius-full);
    backdrop-filter: blur(8px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.vp-hero-pill-badge-white svg {
    color: #fef08a;
    flex-shrink: 0;
}

/* Sellos de Confianza en el Hero */
.vp-hero-trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.vp-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.vp-hero-trust-item svg {
    color: #fde047;
    flex-shrink: 0;
}

/* Columna Derecha: Familia PNG Independiente */
.vp-hero-family-col {
    flex: 1 1 52%;
    max-width: 680px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: flex-end;
    margin-top: auto;
    position: relative;
}

.vp-hero-family-img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 575px;
    object-fit: contain;
    object-position: bottom right;
    vertical-align: bottom;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.35));
}

/* Benefits Bar */
.vp-benefits-section {
    background-color: #ffffff;
    padding: 35px 0;
    border-bottom: 1px solid var(--vp-border);
}

.vp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vp-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px;
}

.vp-benefit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--vp-primary-light);
    color: var(--vp-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-benefit-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 3px 0;
    color: var(--vp-primary-deep);
}

.vp-benefit-text p {
    font-size: 13px;
    color: var(--vp-text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Category Sections */
.vp-section {
    padding: 70px 0;
}

.vp-section-alt {
    background-color: var(--vp-bg-light);
}

.vp-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px auto;
}

.vp-section-kicker {
    display: inline-block;
    color: var(--vp-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.vp-section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--vp-primary-deep);
    line-height: 1.25;
    margin-bottom: 14px;
}

.vp-section-desc {
    font-size: 16px;
    color: var(--vp-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Three Full Category Section Banners */
.vp-category-banners-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vp-cat-section-banner {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--vp-border);
    transition: var(--vp-transition);
}

.vp-cat-section-banner:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* Color palettes for banners */
.vp-cat-section-banner.banner-suplementos {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border-color: #bae6fd;
}

.vp-cat-section-banner.banner-capilar {
    background: linear-gradient(135deg, #faf5ff 0%, #f5e8ff 100%);
    border-color: #e9d5ff;
}

.vp-cat-section-banner.banner-mascotas {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}

.vp-cat-banner-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
}

.vp-cat-banner-grid.grid-inverted {
    grid-template-columns: 0.85fr 1.15fr;
}

.vp-cat-banner-content {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vp-cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 50px;
    width: fit-content;
}

.banner-suplementos .vp-cat-tag {
    background: #e0f2fe;
    color: #0369a1;
}

.banner-capilar .vp-cat-tag {
    background: #f3e8ff;
    color: #7e22ce;
}

.banner-mascotas .vp-cat-tag {
    background: #dcfce7;
    color: #15803d;
}

.vp-cat-banner-title {
    font-size: 25px;
    font-weight: 800;
    color: #0e2a47;
    line-height: 1.3;
    margin: 0 0 14px 0;
}

.vp-cat-banner-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.vp-cat-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
}

.vp-cat-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #334155;
    margin-bottom: 10px;
    line-height: 1.45;
}

.vp-cat-highlights li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--vp-orange);
}

.vp-cat-banner-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.vp-cat-banner-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 380px;
    background: #0e2a47;
}

.vp-cat-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.vp-cat-section-banner:hover .vp-cat-banner-img {
    transform: scale(1.03);
}

.vp-cat-floating-seal {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    z-index: 2;
}

.grid-inverted .vp-cat-floating-seal {
    right: auto;
    left: 20px;
}

/* Magnesium Educational Bridge */
.vp-bridge-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.vp-bridge-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--vp-primary-deep);
    margin-bottom: 14px;
}

.vp-comparison-table-wrap {
    background: #ffffff;
    border-radius: var(--vp-radius);
    overflow: hidden;
    box-shadow: var(--vp-shadow-md);
    border: 1px solid var(--vp-border);
    margin: 25px 0;
}

.vp-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.vp-comparison-table th {
    background-color: var(--vp-bg-soft);
    padding: 12px 14px;
    text-align: left;
    font-weight: 700;
    color: var(--vp-primary-deep);
    border-bottom: 1px solid var(--vp-border);
}

.vp-comparison-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--vp-border);
    vertical-align: middle;
}

.vp-comparison-table tr.highlight {
    background-color: var(--vp-orange-light);
    font-weight: 600;
}

.vp-comparison-table tr.highlight td:first-child {
    color: var(--vp-orange);
    font-weight: 700;
}

.tag-bad {
    color: #ef4444;
    font-weight: 600;
}

.tag-good {
    color: #10b981;
    font-weight: 700;
}

/* Products Grid */
.vitaplena-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vp-product-card {
    background: #ffffff;
    border-radius: var(--vp-radius);
    border: 1px solid var(--vp-border);
    overflow: hidden;
    box-shadow: var(--vp-shadow-sm);
    transition: var(--vp-transition);
    display: flex;
    flex-direction: column;
}

.vp-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--vp-shadow-hover);
    border-color: var(--vp-primary);
}

.vp-card-image-wrap {
    position: relative;
    padding: 20px;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
}

.vp-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--vp-primary-deep);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.vp-product-thumb {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.vp-product-card:hover .vp-product-thumb {
    transform: scale(1.05);
}

.vp-card-body {
    padding: 16px 20px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.vp-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.vp-stars {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1;
}

.vp-rating-val {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
}

.vp-rating-count {
    font-size: 11px;
    color: #64748b;
}

.vp-card-cats {
    font-size: 12px;
    color: var(--vp-text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.vp-card-cats a {
    color: var(--vp-text-muted);
    text-decoration: none;
}

.vp-card-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
    flex: 1;
}

.vp-card-title a {
    color: var(--vp-text);
    text-decoration: none;
    transition: var(--vp-transition);
}

.vp-card-title a:hover {
    color: var(--vp-primary);
}

.vp-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--vp-border);
}

.vp-card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--vp-primary-deep);
}

.vp-card-price .amount {
    color: var(--vp-primary-deep);
}

.vp-btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--vp-orange);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: var(--vp-radius-full);
    text-decoration: none !important;
    transition: var(--vp-transition);
    border: none;
    cursor: pointer;
}

.vp-btn-cart:hover {
    background-color: var(--vp-orange-hover);
    transform: scale(1.04);
}

/* Why Choose Us Section */
.vp-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vp-trust-card {
    background: #ffffff;
    border-radius: var(--vp-radius);
    padding: 28px 22px;
    border: 1px solid var(--vp-border);
    box-shadow: var(--vp-shadow-sm);
    text-align: center;
}

.vp-trust-icon {
    width: 60px;
    height: 60px;
    background: var(--vp-primary-light);
    color: var(--vp-primary);
    border-radius: 50%;
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-trust-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--vp-primary-deep);
    margin: 0 0 10px 0;
}

.vp-trust-card p {
    font-size: 14px;
    color: var(--vp-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* FAQ Accordion */
.vp-faq-wrap {
    max-width: 850px;
    margin: 0 auto;
}

.vp-faq-item {
    background: #ffffff;
    border-radius: var(--vp-radius);
    border: 1px solid var(--vp-border);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--vp-shadow-sm);
}

.vp-faq-trigger {
    width: 100%;
    padding: 18px 24px;
    background: #ffffff;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--vp-primary-deep);
    transition: var(--vp-transition);
}

.vp-faq-question-text {
    font-size: 16px;
    font-weight: 700;
    color: inherit;
    margin: 0;
    line-height: 1.4;
    font-family: inherit;
    text-align: left;
}

.vp-faq-trigger:hover {
    color: var(--vp-primary);
}

.vp-faq-trigger svg {
    transition: transform 0.25s ease;
    color: var(--vp-primary);
    flex-shrink: 0;
}

.vp-faq-item.active .vp-faq-trigger svg {
    transform: rotate(180deg);
}

.vp-faq-body {
    padding: 0 24px 20px 24px;
    font-size: 15px;
    color: var(--vp-text-muted);
    line-height: 1.6;
    display: none;
}

.vp-faq-item.active .vp-faq-body {
    display: block;
}

/* CTA Bar before Footer */
.vp-prefooter-cta {
    background: linear-gradient(135deg, var(--vp-orange) 0%, #ea580c 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.vp-prefooter-inner {
    max-width: 750px;
    margin: 0 auto;
}

.vp-prefooter-cta h2 {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.vp-prefooter-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 28px;
}

.vp-prefooter-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

.vp-prefooter-actions br,
.vp-btn-cta-white br,
.vp-btn-cta-whatsapp br {
    display: none !important;
}

.vp-btn-cta-white,
.vp-btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ffffff;
    color: #0e2a47 !important;
    font-size: 16px;
    font-weight: 800;
    padding: 15px 32px;
    border-radius: var(--vp-radius-full);
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: var(--vp-transition);
}

.vp-btn-cta-white:hover,
.vp-btn-white:hover {
    background-color: #f8fafc;
    color: #ea580c !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.vp-btn-cta-white svg,
.vp-btn-white svg {
    color: #ea580c;
    transition: transform 0.2s ease;
}

.vp-btn-cta-white:hover svg,
.vp-btn-white:hover svg {
    transform: translateX(4px);
}

.vp-btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 800;
    padding: 15px 32px;
    border-radius: var(--vp-radius-full);
    text-decoration: none !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 14px rgba(37, 211, 102, 0.45);
    transition: var(--vp-transition);
}

.vp-btn-cta-whatsapp:hover {
    background-color: #20ba5a;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25), 0 6px 20px rgba(37, 211, 102, 0.55);
}

.vp-btn-cta-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.vp-btn-cta-whatsapp:hover svg {
    transform: scale(1.12);
}

/* Footer Styles */
.vp-site-footer {
    background-color: #0b1e33;
    color: #e2e8f0;
    padding: 70px 0 30px 0;
    font-size: 14px;
}

.vp-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 35px;
    margin-bottom: 50px;
}

.vp-footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.vp-footer-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--vp-orange);
}

.vp-footer-col p {
    color: #94a3b8;
    line-height: 1.6;
}

.vp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vp-footer-links li {
    margin-bottom: 10px;
}

.vp-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--vp-transition);
}

.vp-footer-links a:hover {
    color: var(--vp-orange);
    padding-left: 4px;
}

.vp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #64748b;
    font-size: 13px;
}

/* Floating WhatsApp */
.vitaplena-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.vitaplena-whatsapp-float a {
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
}

.vp-wa-icon {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.vp-wa-icon svg {
    display: block;
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.vitaplena-whatsapp-float a:hover .vp-wa-icon {
    transform: scale(1.08);
}

.vp-wa-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.7;
    animation: wa-pulse 2s infinite;
    z-index: 1;
}

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

.vp-wa-tooltip {
    background: #ffffff;
    color: #0f172a;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-right: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    line-height: 1.3;
}

.vitaplena-whatsapp-float:hover .vp-wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .vitaplena-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vp-benefits-grid,
    .vp-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vp-hero-grid,
    .vp-bridge-grid {
        grid-template-columns: 1fr;
    }
    .vp-cat-banner-grid,
    .vp-cat-banner-grid.grid-inverted {
        grid-template-columns: 1fr;
    }
    .vp-cat-banner-visual {
        min-height: 320px;
    }
    .grid-inverted .vp-cat-banner-visual {
        order: 2;
    }
    .grid-inverted .vp-cat-banner-content {
        order: 1;
    }
    .vp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .vp-hero-section {
        min-height: auto;
        padding: 0;
        display: block;
        background-color: #ea580c;
    }
    .vp-hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        gap: 0;
    }
    .vp-hero-text-col {
        order: 1;
        width: 100%;
        max-width: 100%;
        padding: 0 20px 25px 20px;
        text-align: center;
    }
    .vp-hero-badge-pill {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 14px;
    }
    .vp-hero-title {
        font-size: 26px;
        line-height: 1.22;
        margin-bottom: 14px;
    }
    .vp-hero-subtitle {
        font-size: 14.5px;
        line-height: 1.55;
        margin-bottom: 22px;
        padding: 0 4px;
    }
    .vp-hero-actions-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 22px;
        align-items: stretch;
    }
    .vp-btn-hero-white {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 800;
        justify-content: center;
    }
    .vp-hero-pill-badge-white {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 13px;
    }
    .vp-hero-trust-badges {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        width: 100%;
        justify-content: center;
    }
    .vp-hero-trust-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        font-size: 11px;
        line-height: 1.3;
    }
    .vp-hero-family-col {
        order: 2;
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding: 0 15px;
    }
    .vp-hero-family-img {
        width: 100%;
        max-width: 440px;
        max-height: none !important;
        height: auto;
        display: block;
        vertical-align: bottom;
    }
}

@media (max-width: 768px) {
    .vp-benefits-grid,
    .vp-trust-grid {
        grid-template-columns: 1fr;
    }
    .vp-cat-banner-content {
        padding: 32px 24px;
        text-align: center;
    }
    .vp-cat-tag {
        margin-left: auto;
        margin-right: auto;
    }
    .vp-cat-highlights li {
        text-align: left;
    }
    .vp-cat-banner-actions {
        justify-content: center;
    }
    .vitaplena-products-grid {
        grid-template-columns: 1fr;
    }
    .vp-section-title {
        font-size: 24px;
    }
    .vp-footer-grid {
        grid-template-columns: 1fr;
    }
    .top-bar-inner {
        justify-content: center;
        text-align: center;
    }
    .top-bar-item.city {
        display: none;
    }
    .vp-wa-tooltip {
        display: none;
    }
    .vitaplena-whatsapp-float {
        bottom: 18px;
        right: 18px;
    }
    .vp-wa-icon {
        width: 52px;
        height: 52px;
    }
    .vp-wa-icon svg {
        width: 28px;
        height: 28px;
    }
    .vp-wa-pulse {
        width: 52px;
        height: 52px;
    }
    .vp-prefooter-cta {
        padding: 45px 16px;
    }
    .vp-prefooter-cta h2 {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 12px;
    }
    .vp-prefooter-cta p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    .vp-prefooter-actions {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 360px;
        margin: 12px auto 0 auto;
    }
    .vp-btn-cta-white,
    .vp-btn-cta-whatsapp {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        justify-content: center;
    }
}
