/* Estilo global */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth; /* Navegación suave */
}

/* Encabezado */
.header {
    background: #A44C02;
    color: white;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contenedor principal del encabezado */
.container {
    display: flex;
    justify-content: space-between; /* Separar logo y menú */
    align-items: center; /* Centrar verticalmente */
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
/* Logo */
.logo img{
  height:55px;
  max-width:120%;
  margin-right: 24px;    /* espacio entre logo y menú */
  width:auto;
  display:block;
}

/* Menú de navegación */
.navbar {
    display: flex;
    align-items: center; /* Centrar elementos verticalmente */
    gap: 100px;
}

/* Lista del menú */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 15px; /* Espaciado entre enlaces */
    margin: 0;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #FFDDC1;
}

/* Botón de "Iniciar sesión" */
.login-button {
    background: #FF7A33;
    color: white;
    padding: 8px 20px; /* Tamaño del botón */
    border-radius: 20px; /* Bordes redondeados */
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Sombra sutil */
    transition: all 0.3s;
}

.login-button:hover {
    background: #E9642B; /* Color hover */
    transform: translateY(-2px); /* Efecto dinámico */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #A44C02, #FF7A33);
    color: white;
    text-align: center;
    padding: 70px 15px; /* Ajustar espacio general */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Para contener decoraciones */
}

/* Elementos decorativos */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.hero::before {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
}

.hero::after {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: 15%;
}

/* Contenedor */
.container-inside {
    position: relative;
    z-index: 1; /* Para superponer los decorativos */
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/* Título principal */
.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 20px;
    line-height: 1.3;
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 30px;
    line-height: 1.5;
    color: #FFDDC1; /* Texto más claro */
}

/* Botón de acción */
.cta-button {
    background: white;
    color: #A44C02;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1; /* Para que esté sobre los decorativos */
}

.cta-button:hover {
    background: #FF7A33;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px); /* Efecto dinámico */
}

/* Introducción */
.introduction {
    background: #f9f9f9; /* Fondo claro */
    padding: 60px 20px;
    text-align: center;
    color: #555; /* Color del texto */
}

.introduction h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px;
    color: #A44C02; /* Color destacado */
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #FF7A33; /* Línea decorativa */
}
.introduction .subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center; /* centrado texto */
    color: #333; /* Color del texto */
}
.introduction .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify; /* Justificar texto */
    color: #333; /* Color del texto */
}

/* Responsividad */
@media (max-width: 768px) {
    .introduction h2 {
        font-size: 2rem;
    }
    .introduction .intro-text {
        font-size: 1rem;
    }
}


/* Servicios */
.services {
    padding: 60px 20px;
    text-align: center;
}

/* Título de la sección */
.services h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px;
    color: #A44C02;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #FF7A33;
}

.services .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    /*margin: 01 0 10 10;*/
    margin-bottom: 20px;
    text-align: justify; /* Justificar texto */
    color: #333; /* Color del texto */
}

/* Contenedor de tarjetas */
.cards {
    display: flex;
    flex-wrap: nowrap; /* Evitar que las tarjetas se envuelvan */
    gap: 20px; /* Espaciado entre las tarjetas */
    justify-content: center; /* Centrar las tarjetas horizontalmente */
    margin: 0 auto; /* Asegurar que el contenedor esté centrado */
}

/* Tarjetas individuales */
.card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 250px; /* Fijar un ancho uniforme */
    flex: 0 0 auto; /* Evitar que se redimensionen automáticamente */
    transition: all 0.3s ease-in-out;
}

/* Efecto hover en las tarjetas */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Iconos */
.icon img {
    height: 60px;
    margin-bottom: 5px;
}

/* Títulos dentro de las tarjetas */
.card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.25;
    color: #A44C02;
    min-height: calc(3 * 1.25em);
    display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px; /* separa del ícono */
    text-align: center;
}

/* Texto descriptivo */
.card p {
    margin-top: 10px;            /* separa del título */
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    text-align: justify;
}

/* Responsividad */
@media (max-width: 768px) {
    .cards {
        flex-wrap: wrap; /* Permitir que se envuelvan las tarjetas */
    }
    .card {
        flex: 1 1 calc(50% - 20px); /* Ocupa la mitad del ancho disponible */
    }
}

@media (max-width: 480px) {
    .card {
        flex: 1 1 100%; /* Ocupa todo el ancho disponible */
    }
}
/* Beneficios*/
.benefits {
    background: #f9f9f9; /* Fondo claro */
    padding: 60px 20px;
    text-align: center;
}

.benefits h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px;
    color: #A44C02;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #FF7A33; /* Línea decorativa */
}
.benefits .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    /*margin: 01 0 10 10;*/
    margin-bottom: 20px;
    text-align: justify; /* Justificar texto */
    color: #333; /* Color del texto */
}
/* Contenedor de tarjetas de beneficios */
.benefits-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Centrar las tarjetas */
    margin-top: 20px;
}

/* Tarjetas individuales */
.benefit-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 800px; /* Tamaño uniforme */
    transition: all 0.3s ease-in-out;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Título de la tarjeta */
.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #A44C02;
    margin-bottom: 10px;
}

/* Descripción de la tarjeta */
.benefit-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    text-align: justify; /* Justificar texto */
}

/* Responsividad */
@media (max-width: 768px) {
    .benefit-card {
        width: calc(50% - 20px); /* Dos tarjetas por fila */
    }
}

@media (max-width: 480px) {
    .benefit-card {
        width: 100%; /* Una tarjeta por fila */
    }
}

/* Beneficios Kata st*/
.benefitsST {
    background: #f9f9f9; /* Fondo claro */
    padding: 60px 20px;
    text-align: center;
}

.benefitsST h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px;
    color: #A44C02;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #FF7A33; /* Línea decorativa */
}
.benefitsST .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    /*margin: 01 0 10 10;*/
    margin-bottom: 20px;
    text-align: justify; /* Justificar texto */
    color: #333; /* Color del texto */
}
/* Contenedor de tarjetas de beneficios */
.benefitsST-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Centrar las tarjetas */
    margin-top: 20px;
}

/* Tarjetas individuales */
.benefitST-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px; /* Tamaño uniforme */
    transition: all 0.3s ease-in-out;
}

.benefitST-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Título de la tarjeta */
.benefitST-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #A44C02;
    margin-bottom: 10px;
}

/* Descripción de la tarjeta */
.benefitST-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    text-align: justify; /* Justificar texto */
}

/* Responsividad */
@media (max-width: 768px) {
    .benefitST-card {
        width: calc(50% - 20px); /* Dos tarjetas por fila */
    }
}

@media (max-width: 480px) {
    .benefitST-card {
        width: 100%; /* Una tarjeta por fila */
    }
}

/* Beneficios KataDIN*/
.benefitsDin {
    padding: 60px 20px;
    text-align: center;
}

.benefitsDin h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px;
    color: #A44C02;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #FF7A33; /* Línea decorativa */
}
.benefitsDin .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    /*margin: 01 0 10 10;*/
    margin-bottom: 20px;
    text-align: justify; /* Justificar texto */
    color: #333; /* Color del texto */
}
/* Contenedor de tarjetas de beneficios */
.benefitsDin-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Centrar las tarjetas */
    margin-top: 20px;
}

/* Tarjetas individuales */
.benefitDin-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px; /* Tamaño uniforme */
    transition: all 0.3s ease-in-out;
}

.benefitDin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Título de la tarjeta */
.benefitDin-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #A44C02;
    margin-bottom: 10px;
}

/* Descripción de la tarjeta */
.benefitDin-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    text-align: justify; /* Justificar texto */
}

/* Responsividad */
@media (max-width: 768px) {
    .benefitDin-card {
        width: calc(50% - 20px); /* Dos tarjetas por fila */
    }
}

@media (max-width: 480px) {
    .benefitDin-card {
        width: 100%; /* Una tarjeta por fila */
    }
}




/* Características Principales */
.features {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px;
    color: #A44C02;
    border-bottom: 3px solid #FF7A33;
    display: inline-block;
    padding-bottom: 10px;
}

/* Lista de características */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Menor separación entre tarjetas */
    max-width: 900px;
    margin: 0 auto;
}

/* Elemento individual */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f9f9f9;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08); /* Sombra más suave */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Icono o número */
.feature-icon {
    background: linear-gradient(135deg, #FF7A33, #A44C02); /* Degradado en el círculo */
    color: white;
    font-size: 1.8rem; /* Tamaño más grande */
    font-weight: bold;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contenido de la característica */
.feature-content h3 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #A44C02;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsividad */
@media (max-width: 768px) {
    .features-list {
        gap: 20px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon {
        margin-bottom: 15px;
    }
}

/* Casos de Uso */
.use-cases {
    padding: 60px 20px;
    text-align: center;
}

.use-cases h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px;
    color: #A44C02;
    border-bottom: 3px solid #FF7A33;
    display: inline-block;
    padding-bottom: 10px;
}

.use-cases-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Lista de Casos de Uso */
.use-cases-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Elemento individual */
.use-case-item {
    display: flex;
    align-items: center;
    gap:16px;                 /* en vez de margin-right del icono */
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Icono indeformable */
.use-case-item .icon{
  flex: 0 0 56px;           /* NO crecer, NO encoger, ancho fijo */
  inline-size: 56px;        /* = width */
  aspect-ratio: 1 / 1;      /* cuadrado perfecto */
  border-radius: 50%;
  background:#FF7A33;
  color:#fff;
  display:grid;             /* centra contenido */
  place-items:center;
  line-height:1;            /* evita “rebote” vertical del ✓ */
  box-shadow:0 4px 8px rgba(0,0,0,.1);
  /* opcional: */
  font-size:24px;           /* tamaño del ✓ si es texto */
}

/* Texto del caso */
.use-case-item p {
    font-size: 1.2rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
    text-align: left;
    flex:1;                   /* ocupa el resto, sin empujar al icono */
}

/* Responsividad */
@media (max-width: 768px) {
    .use-cases-list {
        gap: 15px;
    }

    .use-case-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .use-case-item .icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* ¿Por Qué Elegir KATAst? */
.why-choose {
    background: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.why-choose h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px;
    color: #A44C02;
    border-bottom: 3px solid #FF7A33;
    display: inline-block;
    padding-bottom: 10px;
}

.why-choose-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Lista principal */
.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* Elemento individual */
.why-choose-item {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Ícono */
.why-choose-item .icon {
    font-size: 2rem;
    color: #FF7A33;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Texto del ítem */
.why-choose-item p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Responsividad */
@media (max-width: 768px) {
    .why-choose-list {
        gap: 20px;
    }

    .why-choose-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-choose-item .icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
}


/* Testimonios */
.testimonials {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px;
    color: #A44C02;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #FF7A33;
}

/* Tarjeta de testimonio */
.testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

/* Icono de comillas decorativas */
.quote-icon {
    font-size: 4rem;
    font-weight: bold;
    color: #FF7A33;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
}

/* Texto del testimonio */
.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin: 20px 0;
    position: relative;
}

/* Autor del testimonio */
.testimonial-author {
    font-size: 1.1rem;
    font-weight: bold;
    color: #A44C02;
    margin-top: 20px;
}

/* Responsividad */
@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-author {
        font-size: 1rem;
    }
}

/* Llamado a la Acción */
.cta-section {
    background: linear-gradient(to right, #A44C02, #FF7A33);
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Fondo decorativo */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 8s infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 10s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

/* Contenedor */
.cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Encabezado */
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Texto */
.cta-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFDDC1;
}

/* Botón */
.cta-button {
    background: white;
    color: #A44C02;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: #FFDDC1;
    color: #A44C02;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Responsividad */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }

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

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Contacto */
.contact {
    background: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px;
    color: #A44C02;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #FF7A33;
}

/* Contenedor de información */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

/* Elementos individuales */
.contact-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Iconos */
.contact-icon {
    font-size: 2rem;
    color: #FF7A33;
    margin-bottom: 10px;
}

/* Links */
.contact-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.contact-item a {
    color: #A44C02;
    font-weight: bold;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsividad */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .contact-item {
        width: 100%;
        max-width: 500px;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}
