/*
Theme Name: Ariden Labs
Theme URI: https://aridenlabs.com/
Author: Ariden Labs
Description: Tema personalizado para Ariden Labs
Version: 1.0.5
Text Domain: aridenlabs
*/

/* =====================================================
   FONTS
===================================================== */
@font-face {
    font-family: 'Airstrike';
    src: url('fonts/airstrike.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* =====================================================
   VARIABLES
===================================================== */
:root {
    --ink-black: #071013;
    --azure-mist: #ECF8F8;
    --golden-pollen: #F9CE4E;
    --grey: #7C7C7C;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(7,16,19,0.08);
    --shadow-md: 0 10px 40px rgba(7,16,19,0.1);
    --shadow-lg: 0 20px 60px rgba(7,16,19,0.15);
    --shadow-golden: 0 4px 20px rgba(249,206,78,0.4);
    --transition: all 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* =====================================================
   RESET & BASE
===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--azure-mist);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink-black);
    background: transparent;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   UTILIDADES
===================================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

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

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--grey);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   BOTONES
===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--golden-pollen);
    color: var(--ink-black);
    border-color: var(--golden-pollen);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-golden);
}

.btn-outline-light {
    border: 2px solid var(--azure-mist);
    color: var(--azure-mist);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--azure-mist);
    color: var(--ink-black);
}

.btn-outline-dark {
    border: 2px solid var(--ink-black);
    color: var(--ink-black);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--ink-black);
    color: var(--azure-mist);
}

/* =====================================================
   HEADER & NAV
===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(7,16,19,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--azure-mist);
    letter-spacing: 0.5px;
}

.site-logo:hover {
    color: var(--golden-pollen);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--azure-mist);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--golden-pollen);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--azure-mist);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   HERO
===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink-black);
    color: var(--azure-mist);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-family: 'Airstrike', sans-serif;
    color: var(--azure-mist);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    animation: fadeInUp 1.5s ease-out forwards;
}

.hero-text p {
    color: var(--grey);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.hero-logo {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease-out forwards;
}

.hero-logo svg {
    width: 100%;
    max-width: 800px;
    height: auto;
}

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

@keyframes drawPath {
    from {
        stroke-dashoffset: 6000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fillPath {
    0%, 70% {
        fill: transparent;
    }
    100% {
        fill: var(--azure-mist);
    }
}

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

.draw-svg path {
    fill: transparent;
    stroke: var(--azure-mist);
    stroke-width: 3;
    stroke-dasharray: 6000;
    stroke-dashoffset: 6000;
    animation: drawPath 2.5s linear forwards,
               fillPath 1.5s ease-in-out forwards;
}

.hero-text h1 {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* =====================================================
   SERVICES
===================================================== */
.services {
    background: var(--azure-mist);
}

.services .container {
    max-width: 1600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
    border-color: var(--golden-pollen);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--golden-pollen), #e5bc3d);
    border-radius: 50%;
    color: var(--ink-black);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--ink-black);
}

.service-card p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =====================================================
   ABOUT
===================================================== */
.about {
    background: var(--ink-black);
    color: var(--azure-mist);
}

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

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: rgba(236, 248, 248, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.about-content .btn {
    margin-top: 1rem;
}

.about-image {
    position: relative;
    padding: 20px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 0;
    bottom: 40px;
    border: 2px solid var(--golden-pollen);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.about-image > div {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* =====================================================
   PORTFOLIO
===================================================== */
.portfolio {
    background: var(--azure-mist);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    cursor: pointer;
}

.portfolio-item > div:first-child,
.portfolio-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-item svg {
    width: 150px;
    height: auto;
}

.portfolio-item .draw-svg path {
    animation: none;
    fill: var(--azure-mist);
    stroke: none;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(7,16,19,0.95) 0%, rgba(7,16,19,0.7) 50%, transparent 100%);
    color: var(--azure-mist);
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: rgba(236, 248, 248, 0.7);
    font-size: 0.9rem;
}

/* =====================================================
   CONTACT
===================================================== */
.contact {
    background: var(--ink-black);
    color: var(--azure-mist);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: rgba(236, 248, 248, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(236, 248, 248, 0.9);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--golden-pollen);
}

.contact-item a:hover {
    color: var(--golden-pollen);
}

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

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(236, 248, 248, 0.1);
    border-radius: 50%;
    color: var(--azure-mist);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--golden-pollen);
    color: var(--ink-black);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
}

.contact-form {
    background: rgba(236, 248, 248, 0.05);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(236, 248, 248, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--azure-mist);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(236, 248, 248, 0.08);
    border: 1px solid rgba(236, 248, 248, 0.15);
    border-radius: var(--radius-sm);
    color: var(--azure-mist);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--grey);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--golden-pollen);
    background: rgba(236, 248, 248, 0.12);
}

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

.contact-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
    background: var(--ink-black);
    border-top: 1px solid rgba(236, 248, 248, 0.1);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--azure-mist);
}

.footer-logo a:hover {
    color: var(--golden-pollen);
}

.footer-copyright {
    color: var(--grey);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(236, 248, 248, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--golden-pollen);
}

/* =====================================================
   SCROLL TO TOP
===================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--golden-pollen);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
    box-shadow: var(--shadow-sm);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-golden);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: var(--ink-black);
}

/* =====================================================
   ANIMATIONS
===================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }
.fade-in:nth-child(7) { transition-delay: 0.6s; }
.fade-in:nth-child(8) { transition-delay: 0.7s; }

/* =====================================================
   RESPONSIVE - TABLET
===================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .section {
        padding: 4rem 0;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-image {
        max-width: 350px;
        height: auto;
        display: block;
    }
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-logo {
        order: 1;
        max-width: 350px;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .section {
        padding: 3.5rem 0;
    }
    
    /* Mobile Navigation */
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: var(--ink-black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-menu a {
        font-size: 1.5rem;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.25rem;
        min-height: 220px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(7,16,19,0.9) 0%, transparent 100%);
    }
    
    /* Contact */
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .footer-copyright {
        width: 100%;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Scroll to top */
    .scroll-to-top {
        display: none !important;
    }
    
    /* Cookie Banner */
    .cookie-banner {
        padding: 1.25rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-banner-text {
        min-width: 100%;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-banner .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
}

/* =====================================================
   UTILITY CLASSES
===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* =====================================================
   WORDPRESS SPECIFIC
===================================================== */
.wp-block-image img {
    height: auto;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* =====================================================
   PAGE CONTENT
===================================================== */
.page-content {
    background: var(--azure-mist);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--ink-black);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--grey);
    font-size: 0.95rem;
}

.page-body {
    max-width: 900px;
    margin: 0 auto;
}

.page-content-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.page-content-wrapper h2 {
    color: var(--ink-black);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--golden-pollen);
}

.page-content-wrapper h2:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.page-content-wrapper p {
    color: var(--ink-black);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.page-content-wrapper ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.page-content-wrapper ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--ink-black);
    line-height: 1.8;
    position: relative;
}

.page-content-wrapper ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--golden-pollen);
    font-weight: bold;
}

@media (max-width: 768px) {
    .page-content-wrapper {
        padding: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
}

/* =====================================================
   COOKIE BANNER
===================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink-black);
    color: var(--azure-mist);
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--golden-pollen);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--azure-mist);
}

.cookie-banner-text a {
    color: var(--golden-pollen);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner-text a:hover {
    color: var(--azure-mist);
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* =====================================================
   RESPONSIVE - iPhone 12 Pro y similares (390px - 430px)
===================================================== */
@media (max-width: 430px) {
    .service-card {
        padding: 1rem;
        min-height: 200px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .service-icon svg {
        width: 22px;
        height: 22px;
    }

    .service-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }

    .service-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .services-grid {
        gap: 0.75rem;
    }
}

/* =====================================================
   RESPONSIVE - Pantallas muy pequeñas (< 375px)
===================================================== */
@media (max-width: 375px) {
    .service-card {
        padding: 0.875rem;
        min-height: 190px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.65rem;
    }

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }

    .service-card p {
        font-size: 0.75rem;
    }
}