/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-wrap: pretty;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.link {
    color: #3b82f6;
    text-decoration: underline;
    cursor: pointer;
}

#app {
    /* min-height: 100vh; */
    margin-top: 175px;
}

@media (max-width: 768px) {
    #app {
        margin-top: 150px;
    }
}

@media (max-width: 480px) {
    #app {
        margin-top: 100px;
    }
}

/* Utilidades de espaciado */
.p-6 { padding: 1.5rem; }
.p-4 { padding: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.space-y-12 > * + * { margin-top: 3rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Grid */
.grid { display: grid; }
.gap-6 { gap: 1.5rem; }
.col-span-full { grid-column: 1 / -1; }

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

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

/* Layout */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.text-center { 
    text-align: center; 
    margin-left: auto;
    margin-right: auto;
}
.max-w-4xl { max-width: 56rem; }
.max-w-xl { 
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

/* Typography */
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.text-muted-foreground {
    color: #6b7280;
}

/* Card */
.card {
    color: black;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.card:hover::before {
    background-color: rgba(255, 255, 255, 0.3);
}

.card:hover {
    color: white;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.2), 0 4px 8px -2px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px) scale(1.02);
}

.card-content {
    padding: 1rem;
    position: relative;
    z-index: 2;
}

/* Fondos específicos para cada card */
.card-inicio {
    background-image: url('images/card_conocenos.webp');
}

.card-gestion-colonias {
    background-image: url('images/card_colonias.webp');
}

.card-asesoria {
    background-image: url('images/card_asesoria.webp');
}

.card-catsitter {
    background-image: url('images/card_catsitter.webp');
}

.card-tienda {
    background-image: url('images/card_tienda.webp');
}

.card-contacto {
    background-image: url('images/card_contacto.webp');
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    height: 2.5rem;
    padding: 0 1rem;
    background-color: #1f2937;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #374151;
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

/* Icons */
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }

/* Content sections */
.section-content {
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Paragraphs */
p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* Destination name specific styling */
#destination-name-sim {
    text-align: left;
}

/* Strong text */
strong {
    font-weight: 600;
    color: #374151;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-5xl {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .text-4xl {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .text-3xl {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .p-6 {
        padding: 1rem;
    }
    
    .max-w-4xl {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* Mejoras adicionales para legibilidad del texto */
.card h2, .card p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.card:hover h2, .card:hover p {
    text-shadow: 0 0 .3em black;
    transition: all 0.3s ease-in-out;
}

.card .btn {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Header con logo completo */
.logo-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 175px;
    z-index: 1000;
    background: linear-gradient(135deg, #232323 0%, #2d2d2d 60%, #000 100%);
    border-radius: 0;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container-full {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    padding: 0;
    margin: 0;
    background: none;
}

.logo-full {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    border: none;
    background: none;
    padding: 10px 0 10px 0;
    margin: 0;
    display: block;
}

.main-content {
    margin-top: 110px;
    padding: 2rem 1.5rem;
}

/* Efectos adicionales para el header */
.logo-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 70%);
    pointer-events: none;
}

/* Responsive para el logo header */
@media (max-width: 768px) {
    .logo-header {
        height: 150px;
    }
    .main-content {
        margin-top: 50px;
        padding: 1.5rem 1rem;
    }
    .logo-full {
        height: 90%;
    }
}

@media (max-width: 480px) {
    .logo-header {
        height: 100px;
    }
    .main-content {
        margin-top: 32px;
        padding: 1rem 0.75rem;
    }
    .logo-full {
        height: 100%;
    }
}

/* Estilos específicos para la página de servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
}

.service-card.featured {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #3b82f6;
    transform: scale(1.02);
}

.service-card.featured:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.2);
}

/* Efecto hover dorado específico para las tarjetas de consulta */
.consultation-grid .service-card.featured:hover {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 20%, #f59e0b 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.3);
    border-color: #f59e0b;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, #374151, #111827);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.service-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

.additional-services {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

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

.additional-item {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.additional-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.additional-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.additional-item p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

/* Estilo específico para la sección de proceso de reserva con fondo dorado claro */
.cta-section.reservation-process {
    background: linear-gradient(135deg, #fef7cd 0%, #fde68a 50%, #fcd34d 100%);
    color: #78350f;
    border: 2px solid #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.cta-section.reservation-process h3 {
    color: #78350f;
    margin-bottom: 1rem;
}

.cta-section.reservation-process p {
    color: #92400e;
    font-size: 1.1rem;
}

.cta-section.reservation-process h4 {
    color: #78350f;
}

.cta-section.reservation-process .service-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Estilo específico para cada apartado individual del proceso de reserva */
.cta-section.reservation-process .text-center {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    margin: 0.5rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-section.reservation-process .text-center:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.15);
}

.cta-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ffffff;
    color: #3b82f6;
    font-weight: 600;
}

.btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive para servicios */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .additional-item {
        padding: 1rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Estilos específicos para consulta felina a distancia */
.service-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    text-align: left;
    padding-left: 0;
}

.service-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    text-align: left;
    margin-top: 1rem;
}

.text-blue-600 {
    color: #2563eb;
}

.space-y-1 > * + * {
    margin-top: 0.25rem;
}

/* Precio destacado */
.service-card .text-2xl.font-bold.text-blue-600 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Responsive para las consultas */
@media (max-width: 768px) {
    .service-card.featured {
        padding: 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.5rem;
    }
    
    .service-card ul li {
        font-size: 0.875rem;
    }
    
    .service-card h5 {
        font-size: 1rem;
    }
}

/* Estilos para FAQ - Acordeón */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
}

.faq-item.active {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

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

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: #6b7280;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #3b82f6;
}

.faq-answer-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer-container {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
    padding-top: 0.5rem;
}

.faq-answer strong {
    color: #374151;
    font-weight: 600;
}

/* Responsive para FAQ */
@media (max-width: 768px) {
    .faq-header {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer-container {
        padding: 0 1rem 1rem 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}

/* Estilos específicos para las consultas en grid horizontal */
.consultation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.consultation-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

.consultation-card .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.consultation-card .text-center {
    margin-top: auto;
}

/* Ajustes para texto más pequeño en consultas */
.consultation-card .text-xs {
    font-size: 0.75rem;
    line-height: 1.4;
}

.consultation-card .text-sm {
    font-size: 0.875rem;
    line-height: 1.4;
}

.consultation-card .text-xl {
    font-size: 1.125rem;
    line-height: 1.3;
}

.consultation-card h5 {
    font-size: 0.95rem;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.consultation-card ul {
    margin-bottom: 0.75rem;
}

.consultation-card ul li {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    line-height: 1.3;
}

/* Responsive para consultas */
@media (max-width: 1023px) {
    .consultation-card {
        min-height: auto;
    }
    
    .consultation-card .text-xl {
        font-size: 1.25rem;
    }
    
    .consultation-card ul li {
        font-size: 0.875rem;
    }
}

/* ========================================
   ESTILOS PARA SIMULADOR DE PRESUPUESTOS
   ======================================== */

/* Contenedor principal del simulador */
.simulator-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Grid de configuración del simulador */
.simulator-config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: start;
}

/* Formularios del simulador */
.simulator-form-group {
    display: flex;
    flex-direction: column;
}

/* Formulario que ocupa dos columnas */
.simulator-form-group-span-2 {
    grid-column: span 2;
}

.simulator-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.simulator-form-group input[type="number"],
.simulator-form-group input[type="date"],
.simulator-form-group input[type="text"],
.simulator-form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.simulator-form-group input:focus,
.simulator-form-group select:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Contenedor de visitas */
.visits-container {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

/* Items de visita individuales */
.visit-item {
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 0.75rem;
    border-left: 4px solid #6b7280;
    transition: all 0.2s ease;
}

.visit-item.is-weekend {
    background-color: #fefbf0;
    border-left-color: #f59e0b;
}

.visit-item.is-holiday {
    background-color: #fef2f2;
    border-left-color: #ef4444;
}

.visit-date-info {
    font-weight: 500;
    color: #374151;
}

.visit-cost {
    font-weight: bold;
    font-size: 1.1rem;
    color: #1f2937;
    text-align: right;
}

/* Selectores de tipo de visita */
.visit-type {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background-color: #ffffff;
    transition: border-color 0.2s;
}

.visit-type:focus {
    border-color: #3b82f6;
    outline: none;
}

/* Sección de resultados */
.simulator-results {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.75rem;
}

/* Estilo específico para el desglose detallado */
.simulator-breakdown-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.75rem;
}

.simulator-breakdown-section .simulator-total-budget {
    font-size: 1.75rem;
    font-weight: bold;
    color: #1e40af;
    text-align: center;
    margin-bottom: 1rem;
}

.simulator-breakdown-section .breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dbeafe;
}

.simulator-breakdown-section .breakdown-item:last-child {
    border-bottom: none;
}

.simulator-breakdown-section .breakdown-item .price {
    font-weight: 600;
    color: #1e40af;
}

.simulator-total-budget {
    font-size: 1.75rem;
    font-weight: bold;
    color: #065f46;
    text-align: center;
    margin-bottom: 1rem;
}

.simulator-breakdown {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #d1fae5;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item .price {
    font-weight: 600;
    color: #065f46;
}

/* Estilos para descuentos */
.discount {
    color: #dc2626;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.eval-discount {
    color: #059669;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.date-info {
    color: #6b7280;
    font-size: 0.8rem;
}

/* Responsive para simulador */
@media (max-width: 768px) {
    .simulator-config-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .visit-item {
        padding: 0.75rem;
    }
    
    .simulator-results {
        padding: 1rem;
    }
    
    .simulator-total-budget {
        font-size: 1.5rem;
    }
    
    .breakdown-item {
        font-size: 0.875rem;
    }
}

.conocenos-foto {
    max-width: 25%;
    height: auto;
    margin-left: 20px;
    border-radius: 0.5rem;
    float: right;
}

@media (max-width: 768px) { .conocenos-intro { align-items: flex-end; } }

/* Estilos de colores dorados para recuadros */
/* Fondos dorados claros */
.bg-yellow-50 {
    background-color: #fffbeb;
}

.bg-amber-50 {
    background-color: #fffbf0;
}

.bg-yellow-100 {
    background-color: #fef3c7;
}

.bg-orange-50 {
    background-color: #fff7ed;
}

.bg-amber-100 {
    background-color: #fdf4e7;
}

.bg-orange-100 {
    background-color: #ffedd5;
}

/* Bordes dorados */
.border-yellow-200 {
    border-color: #fde68a;
}

.border-amber-200 {
    border-color: #fce7c7;
}

.border-yellow-300 {
    border-color: #fcd34d;
}

.border-orange-200 {
    border-color: #fed7aa;
}

.border-amber-300 {
    border-color: #fbbf24;
}

.border-orange-300 {
    border-color: #fdba74;
}

/* Colores de texto dorados */
.text-yellow-700 {
    color: #a16207;
}

.text-amber-700 {
    color: #b45309;
}

.text-yellow-800 {
    color: #92400e;
}

.text-orange-700 {
    color: #c2410c;
}

.text-amber-800 {
    color: #92400e;
}

.text-orange-800 {
    color: #9a3412;
}

/* Esquinas redondeadas */
.rounded-lg {
    border-radius: 0.5rem;
}

/* Espaciado */
.space-y-8 > * + * {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* Tamaño de texto 2xl */
.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

/* Font weight medium */
.font-medium {
    font-weight: 500;
}

/* Listas con espaciado */
.list-disc {
    list-style-type: disc;
}

.list-inside {
    list-style-position: inside;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

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

/* Contact actions layout */
.contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 260px));
    justify-content: center;
    align-items: stretch; /* ensure both items align vertically */
    gap: 12px;
    margin-top: 0.5rem;
}

/* Email box styles */
.email-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 0.5rem 0 0;
    padding: 0.6rem 1rem;
    min-height: 56px; /* equal target height (match WhatsApp visual height) */
    line-height: 1; /* avoid baseline affecting vertical centering */
    border: 2px solid #000; /* negro */
    color: #000;            /* negro */
    background-color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, transform 0.15s ease;
}

.email-box:hover,
.email-box:focus-visible {
  color: #b8860b;          /* dorado (dark goldenrod) */
  border-color: #b8860b;
  background-color: #000;  /* fondo negro para contraste */
  transform: scale(1.03);
  outline: none;
}

.email-box:active {
  transform: scale(0.98);
}

/* WhatsApp box styles */
.whatsapp-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 0.5rem 0 0; /* align vertical spacing with email */
    padding: 0.6rem 1rem; /* match email padding */
    min-height: 56px;     /* equal target height: same as email */
    line-height: 1;       /* avoid baseline affecting vertical centering */
    border: 2px solid #25D366; /* WhatsApp brand green */
    color: #25D366;
    background-color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.whatsapp-box:hover,
.whatsapp-box:focus-visible {
    color: #ffffff;
    background-color: #25D366; /* solid brand green */
    border-color: #1FB65A;     /* slightly darker for focus ring */
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.25);
    outline: 3px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-box:active {
  transform: scale(0.98);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    display: block; /* avoid baseline gaps */
    align-self: center; /* ensure vertical centering within flex */
}
