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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: hsl(222.2, 84%, 4.9%);
    background-color: hsl(210, 40%, 98%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== CSS VARIABLES ===== */
:root {
    --primary: hsl(276, 57%, 67%);
    --primary-foreground: hsl(210, 40%, 98%);
    --secondary: hsl(210, 40%, 96%);
    --accent: hsl(24.6, 95%, 53.1%);
    --foreground: hsl(222.2, 84%, 4.9%);
    --background: hsl(210, 40%, 98%);
    --card: hsl(0, 0%, 100%);
    --muted-foreground: hsl(215.4, 16.3%, 46.9%);
    --border: hsl(214.3, 31.8%, 91.4%);
    --destructive: hsl(356.3033, 90.5579%, 54.3137%);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===== SVG ICON SIZES ===== */
svg {
    flex-shrink: 0;
}

.h-4 {
    height: 1rem;
    width: 1rem;
}

.w-4 {
    height: 1rem;
    width: 1rem;
}

.h-5 {
    height: 1.25rem;
    width: 1.25rem;
}

.w-5 {
    height: 1.25rem;
    width: 1.25rem;
}

.h-8 {
    height: 2rem;
    width: 2rem;
}

.w-8 {
    height: 2rem;
    width: 2rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

/* ===== HEADER ===== */
.header {
    background: var(--card);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header .container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .header .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header .container {
        padding: 0 2rem;
    }
}

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

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

.logo-container img {
    height: 5rem;
    width: 15rem;/*5*/
    object-fit: contain;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

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

/* ===== DROPDOWN MENU ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--foreground);
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background: var(--muted);
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1.5rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-whatsapp:hover {
    background: #20c25a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-cotiza {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-cotiza:hover {
    background: hsl(276, 57%, 60%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--card);
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem;
}

@media (min-width: 640px) {
    .mobile-menu-content {
        padding: 1rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .mobile-menu-content {
        padding: 1rem 2rem;
    }
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    text-align: left;
    color: var(--foreground);
    font-weight: 500;
    padding: 0.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}

.btn-whatsapp-mobile {
    background: #25D366;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-cotiza-mobile {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, rgba(175, 127, 222, 0.05) 0%, rgba(251, 146, 60, 0.05) 100%);
    padding: 5rem 0;
}

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

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

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

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

.text-primary {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.375rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary:hover {
    background: hsl(276, 57%, 60%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(175, 127, 222, 0.3);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--foreground);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.375rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-secondary:hover {
    background: var(--secondary);
}

.hero-image {
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    width: 100%;
    height: auto;
}

/* ===== BENEFITS BANNER ===== */
.benefits-banner {
    padding: 2rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(175, 127, 222, 0.9) 0%, rgba(147, 51, 234, 0.9) 100%);
}

.benefits-track {
    display: flex;
    gap: 3rem;
    animation: scroll-benefits 30s linear infinite;
    width: fit-content;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0 2rem;
    min-width: 400px;
    gap: 1rem;
}

.benefit-icon {
    height: 2rem;
    width: 2rem;
    filter: drop-shadow(0 2px 4px rgb(0 0 0 / 0.1));
}

@media (min-width: 1024px) {
    .benefit-icon {
        height: 2rem;
        width: 2rem;
    }
}

.benefit-item span {
    font-size: 1.125rem;
    font-weight: 600;
    white-space: nowrap;
    filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1));
}

@media (min-width: 1024px) {
    .benefit-item span {
        font-size: 1.25rem;
    }
}

@keyframes scroll-benefits {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 5rem 0;
    background: var(--card);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@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 {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    height: 1.5rem;
    width: 1.5rem;
}

.bg-primary-light {
    background: rgba(175, 127, 222, 0.1);
}

.bg-accent-light {
    background: rgba(251, 146, 60, 0.1);
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

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

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

.service-link {
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    transition: color 0.2s ease;
}

.service-link:hover {
    color: hsl(276, 57%, 60%);
}

.service-arrow {
    height: 1rem;
    width: 1rem;
    margin-left: 0.25rem;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    padding: 5rem 0;
    background: rgba(210, 231, 255, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

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

.portfolio-item {
    background: var(--card);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.portfolio-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag-primary {
    background: rgba(175, 127, 222, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.tag-accent {
    background: rgba(251, 146, 60, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.portfolio-link {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease;
}

.portfolio-link:hover {
    color: hsl(276, 57%, 60%);
}

.portfolio-arrow {
    height: 0.75rem;
    width: 0.75rem;
    margin-left: 0.25rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 5rem 0;
    background: var(--card);
}

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

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

.about-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

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

.about-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

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

.stat-label {
    color: var(--muted-foreground);
}

.about-image {
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    width: 100%;
    height: auto;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(175, 127, 222, 0.95) 0%, rgba(147, 51, 234, 0.95) 100%);
}

.cta-bg-decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-decoration-1 {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(48px);
}

.cta-decoration-2 {
    position: absolute;
    bottom: -2.5rem;
    left: -2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(32px);
}

.cta-content {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .cta-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .cta-content {
        padding: 0 2rem;
    }
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-icon-bg {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    padding: 1rem;
}

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

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

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

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

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

.btn-cta-primary {
    background: white;
    color: var(--primary);
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-4px);
}

.cta-benefits {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 5rem 0;
    background: var(--card);
}

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

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

.contact-form-container {
    background: rgba(210, 231, 255, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(175, 127, 222, 0.1);
}

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

.error-message {
    color: var(--destructive);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.875rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background: hsl(276, 57%, 60%);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit-loading {
    display: none;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.contact-icon {
    height: 1.25rem;
    width: 1.25rem;
}

.contact-info-item h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: var(--muted-foreground);
    margin: 0;
}

.email-services-highlight {
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(175, 127, 222, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    padding: 1.5rem;
}

.email-services-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.email-services-image {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    object-fit: cover;
    margin-right: 1rem;
}

.email-services-header h4 {
    font-weight: 600;
    color: var(--foreground);
}

.email-services-header p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.email-services-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.email-services-link {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease;
}

.email-services-link:hover {
    color: hsl(24.6, 95%, 45%);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--foreground);
    color: var(--background);
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .footer-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        padding: 0 2rem;
    }
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 28rem;
}

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

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.social-icon {
    height: 1.25rem;
    width: 1.25rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links button,
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    text-align: left;
    padding: 0;
}

.footer-links button:hover,
.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE UTILITIES ===== */
.text-center {
    text-align: center;
}

.mt-12 {
    margin-top: 3rem;
}

/* ===== ANIMATIONS ===== */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* ===== SMOOTH TRANSITIONS ===== */
a, button {
    transition: all 0.2s ease;
}

/* ===== SVG ICON STYLES ===== */
svg {
    flex-shrink: 0;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== HERO CAROUSEL CERTEROWEB ===== */
.hero-carousel{position:relative;padding:0;overflow:hidden}.hero-carousel-viewport{overflow:hidden}.hero-carousel-track{display:flex;transition:transform .65s cubic-bezier(.22,.61,.36,1);will-change:transform}.hero-slide{flex:0 0 100%;padding:5rem 0;background:linear-gradient(135deg,rgba(175,127,222,.05),rgba(251,146,60,.05))}.hero-slide-digital{background:linear-gradient(135deg,rgba(175,127,222,.11),rgba(249,115,22,.07))}.hero-kicker{display:inline-flex;padding:.45rem .8rem;border-radius:999px;background:rgba(175,127,222,.14);color:#744f94;font-size:.84rem;font-weight:800;margin-bottom:1rem}.hero-image-digital{background:#fff;object-fit:cover;aspect-ratio:7/5}.hero-carousel-control{position:absolute;z-index:3;top:50%;transform:translateY(-50%);width:44px;height:44px;border:1px solid rgba(175,127,222,.25);border-radius:50%;background:rgba(255,255,255,.88);color:#8058a3;font-size:2rem;line-height:1;display:grid;place-items:center;cursor:pointer;box-shadow:0 10px 30px rgba(45,28,58,.12);transition:.2s ease}.hero-carousel-control:hover{background:#fff;transform:translateY(-50%) scale(1.05)}.hero-carousel-prev{left:max(12px,calc((100vw - 1280px)/2))}.hero-carousel-next{right:max(12px,calc((100vw - 1280px)/2))}.hero-carousel-dots{position:absolute;z-index:4;left:50%;bottom:1.15rem;transform:translateX(-50%);display:flex;gap:.55rem}.hero-carousel-dots button{width:10px;height:10px;border:0;border-radius:999px;background:rgba(128,88,163,.3);padding:0;cursor:pointer;transition:.25s ease}.hero-carousel-dots button.is-active{width:28px;background:var(--primary)}.service-link{text-decoration:none}.service-card>a.service-link{display:flex;align-items:center;background:transparent;border:0;padding:0;color:var(--primary);font-weight:600;cursor:pointer;font-family:inherit;font-size:.875rem;transition:all .2s ease}.service-card>a.service-link:hover{color:hsl(276,57%,55%);gap:.5rem}
@media(max-width:1100px){.hero-carousel-control{top:auto;bottom:1rem;transform:none}.hero-carousel-control:hover{transform:scale(1.05)}.hero-carousel-prev{left:1rem}.hero-carousel-next{right:1rem}}
@media(max-width:640px){.hero-slide{padding:3.5rem 0 4.8rem}.hero-carousel-control{display:none}.hero-carousel-dots{bottom:1.15rem}.hero-slide-digital .hero-title{font-size:2.15rem}}
@media(prefers-reduced-motion:reduce){.hero-carousel-track{transition:none}}


/* ===== Imagen real de tarjetas digitales en el carrusel ===== */
.hero-image-cards{display:block;width:100%;max-width:650px;margin-inline:auto;object-fit:contain;background:#fff;padding:.32rem;border-radius:1rem;box-shadow:0 25px 50px -12px rgb(0 0 0 / .20)}
.hero-slide-digital .relative{display:flex;align-items:center;justify-content:center}
