/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Variables de colores */
:root {
    --primary-orange: #FF6B35;
    --primary-blue: #4A90E2;
    --primary-red: #e24a72;
    --primary-crema: #f5ede4;
    --primary-brown: #8b5e3c;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --dark-gray: #333333;
    --text-gray: #666666;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-orange);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.3s ease;
}

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

.social-icon.facebook {
    background-color: var(--primary-blue);
}

.social-icon.whatsapp {
    background-color: #25D366;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    background-image: url(http://localhost/fratelligelato/fratelli/public/img/fratelligelato-header.jpg); /* http://localhost/fratelligelato/fratelli//public/img/medalla-premio.png */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--primary-brown);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 50%;
    height: auto;
    border-radius: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-brown), #ff8c5a);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--primary-blue), #6ba3e8);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.btn-call {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-brown);
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* Helados Section */
.helados-section {
    padding: 5rem 0;
    background: var(--white);
}

.helados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.helado-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.helado-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 15px 30px rgba(0,0,0,0.15); */
}

.helado-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.helado-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.helado-title a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.helado-title a:hover {
    color: var(--primary-blue);
}

.helado-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.helado-link {
    /* position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease; */
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    /* background: var(--primary-orange); */
    color: var(--text-gray);
    /* border-radius: 50%; */
    text-decoration: none;
    transition: transform 0.3s ease;
}

.helado-link:hover {
    transform: translatex(2px);
}

/* Tartas Banner */
.tartas-banner {
    background: linear-gradient(135deg, var(--primary-crema), #ebb9a3);
    padding: 5rem 0;
    color: var(--white);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.banner-text {
    flex: 1;
}

.banner-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-brown);
}

.banner-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.banner-image {
    flex: 1;
}

.banner-image img {
    width: 100%;
    border-radius: 15px;
}

/* Tartas Sabores */
.tartas-sabores {
    background: rgba(0, 0, 0, 0.08);
    padding: 3rem 0 4rem;
}

.tartas-sabores-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.tartas-sabores-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tarta-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    min-width: 110px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.tarta-chip:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tarta-chip img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
}

.tarta-chip span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-brown);
    text-align: center;
    white-space: nowrap;
}

/* Valores Section */
.valores-section {
    padding: 5rem 0;
    background: var(--white);
}

.valores-intro {
    max-width: 800px;
    margin: 1.5rem auto 3rem;
    text-align: left;
}

.valores-intro p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.valores-intro p strong {
    color: var(--primary-orange);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.valor-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.valor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    /* background: linear-gradient(45deg, var(--primary-orange), #ff8c5a); */
    background: linear-gradient(135deg,#fdf8f3,#f5ede4);
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.valor-icon i {
    font-size: 1.6rem;
    color: var(--primary-brown);
}

.valor-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.valor-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Distribucion Section */
.distribucion-section {
    padding: 5rem 0;
    background: linear-gradient(135deg,#fdf8f3,#f5ede4);
}

.distribucion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.distribucion-card {
    border-radius: 18px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.distribucion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.distribucion-card--horeca,
.distribucion-card--eventos,
.distribucion-card--tiendas {
   /*  background: #fff4ec; */
    /* border-top: 4px solid #ffb38a; */
    border-top: 4px solid #ffffff;
    background: #ffffff;
}

/* .distribucion-card--eventos {
    background: #f0f6ff;
    border-top: 4px solid #9bbfee;
}

.distribucion-card--tiendas {
    background: #f2fdf2;
    border-top: 4px solid #90d4a0;
} */

.distribucion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    align-self: center;
}

.distribucion-card--horeca .distribucion-icon {
    background: linear-gradient(135deg,#fdf8f3,#f5ede4);
    color: var(--primary-brown);
}

.distribucion-card--eventos .distribucion-icon {
    background: linear-gradient(135deg,#fdf8f3,#f5ede4);
    color: var(--primary-brown);
}

.distribucion-card--tiendas .distribucion-icon {
    background: linear-gradient(135deg,#fdf8f3,#f5ede4);
    color: var(--primary-brown);
}

.distribucion-icon i {
    font-size: 1.6rem;
}

.distribucion-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-brown);
    line-height: 1.4;
}

.distribucion-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.distribucion-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.distribucion-card--horeca .distribucion-list li i {
    color: #e07040;
    margin-top: 3px;
    flex-shrink: 0;
}

.distribucion-card--eventos .distribucion-list li i {
    color: #4a7cc7;
    margin-top: 3px;
    flex-shrink: 0;
}

.distribucion-card--tiendas .distribucion-list li i {
    color: #3a9a50;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Nosotros Section */
.nosotros-section {
    padding: 5rem 0;
    background: var(--primary-crema);
}

.nosotros-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nosotros-text {
    flex: 1;
}

.nosotros-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.premio-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.premio-badge i {
    font-size: 2rem;
    color: #FFD700;
}

.premio-badge strong {
    display: block;
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.premio-badge span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.nosotros-image {
    flex: 1;
}

.nosotros-image img {
    width: 100%;
    border-radius: 15px;
}

/* Contacto Section */
.contacto-section {
    padding: 5rem 0;
    background: var(--white);
}

.contacto-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.contacto-info h3 {
    margin-bottom: 2rem;
    color: var(--dark-gray);
    font-size: 1.5rem;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contacto-item i {
    color: var(--primary-orange);
    width: 20px;
}

.contacto-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.contacto-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-blue);
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Archive Page Styles */
.breadcrumb-section {
    margin-top: 80px;
    padding: 2rem 0;
    background: var(--light-gray);
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-blue);
}

.separator {
    color: var(--text-gray);
}

.archive-section {
    padding: 4rem 0;
    background: var(--white);
}

.archive-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.archive-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;  
}

.back-button-container {
    text-align: center;
    margin-top: 3rem;
}

/* Single Helado Page Styles */
.single-helado-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.single-helado-image {
    position: relative;
    text-align: center;
}

.single-helado-image img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.helado-category {
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.single-helado-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.single-helado-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.helado-details {
    margin-bottom: 3rem;
}

.detail-item {
    margin-bottom: 2rem;
}

.detail-item h3 {
    font-size: 1.2rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.nutrition-item .label {
    color: var(--text-gray);
    font-weight: 500;
}

.nutrition-item .value {
    color: var(--primary-orange);
    font-weight: 600;
}

.alergenos-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.alergeno {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.related-helados {
    padding: 4rem 0;
    background: var(--light-gray);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-list {
        gap: 1rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .helados-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content,
    .nosotros-content,
    .contacto-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contacto-buttons {
        flex-direction: row;
    }

    /* Archive Page Responsive */
    .archive-title {
        font-size: 2rem;
    }

    /* Single Helado Responsive */
    .single-helado-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .single-helado-title {
        font-size: 2rem;
    }

    .nutrition-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .image-badge {
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contacto-buttons {
        flex-direction: column;
    }

    /* Archive Page Mobile */
    .archive-title {
        font-size: 1.8rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }

    /* Single Helado Mobile */
    .single-helado-title {
        font-size: 1.8rem;
    }

    .single-helado-image img {
        height: 250px;
    }

    /* Press Page Mobile */
    .press-hero-content h1 {
        font-size: 2rem;
    }

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

    .press-article {
        flex-direction: column;
        text-align: center;
    }

    .article-image {
        margin-bottom: 1rem;
    }

    .article-content h2 {
        font-size: 1.3rem;
    }

    .press-contact-content {
        text-align: center;
    }

    .contact-info {
        justify-content: center;
    }
}

/* Press Page Styles */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Press Hero Section */
.press-hero {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.press-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.press-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Press Articles Section */
.press-articles {
    padding: 4rem 0;
    background: var(--light-gray);
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.press-article {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    min-height: 280px;
}

.press-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.article-image {
    position: relative;
    flex: 1;
    min-height: 280px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.article-source {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.article-content {
    flex: 1.5;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-date {
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.publication {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.9rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.read-more:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.read-more i {
    font-size: 0.8rem;
}

/* Press Contact Section */
.press-contact {
    padding: 3rem 0;
    background: var(--white);
}

.press-contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.press-contact-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.press-contact-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.contact-item i {
    color: var(--primary-orange);
}

/* Navigation Active State */
.nav-list a.active {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Placeholder images when images don't exist */
.article-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0),
                linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.3;
    z-index: 0;
}

.article-image img {
    position: relative;
    z-index: 1;
}

/* PAGINAS LEGAL */
.legal-hero {
    padding: 4rem 0;
}

.legal-hero-content {
    margin: auto;
    max-width: 800px;
    font-size: 1em;
}
.legal-subtitel {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--primary-brown);
}

.legal-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.legal-ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 2rem;
}

