/*contact page styles*/


/* Estilos para el Bloque de Información Personal  */
.personal-contact-info {
    padding: 25px;
    background-color: #fefefe;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex: 2; 
}

.personal-contact-info h2 {
    font-family: var(--font-heading);
    color: var(--color-contrast);
    text-align: center;
    margin-top: 0;
}

/* Estilo para la Foto de Perfil */
.profile-photo {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%; 
    object-fit: cover;
    margin: 0 auto 20px auto; 
    border: 3px solid var(--color-coral, #C2948A); 

}
.personal-contact-info p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
    margin-bottom: 25px;
}
.about-me-details {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee; 
    text-align: left;
}
.about-me-details h3 {
    font-family: var(--font-heading);
    color: var(--color-coral, #C2948A);
    margin-bottom: 15px;
    text-align: center;
}
.about-me-details h4 {
    font-family: var(--font-body);
    color: var(--color-contrast, #333);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.15rem;
    text-align: center;
}
.about-me-details p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    text-align: justify; 
}
.about-me-details ul {
    list-style: none; 
    padding: 0;
    margin-bottom: 25px;
    width: fit-content; 
    margin-left: auto;  
    margin-right: auto; 
}
.about-me-details ul li {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-me-details ul li i {
    color: var(--color-botones, #7EA8BE); 
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
    
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 30px;
}
.gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover; 
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}
.gallery-grid img:hover {
    transform: scale(1.03); 
}



/* Estilo para cada línea de contacto */

.direct-contact {
    max-width: 650px; 
    margin: 30px auto; 
    padding: 0 20px; 
    text-align: center; 
}

/* Estilos para el contenedor de los enlaces directos */
.direct-contact-links {
    padding: 25px; 
    border: 2px solid var(--color-coral, #C2948A); 
    border-radius: 12px;
    text-align: center;    
    display: flex;
    flex-direction: column;
    gap: 15px; 
}
.direct-contact-links p {
    font-size: 1.15rem; 
    margin: 0;
    /
}
@media (max-width: 550px) {
    .banner-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }
    .cookie-btn {
        width: 100%; 
        margin-top: 10px;
    }
}

.contact-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 1rem; 
    box-sizing: border-box;
}


/* Exchange rates */
.exchange-rates {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    max-width: 320px;
    font-weight: bold;
    margin: 0 auto;
}

.exchange-rates h2, .exchange-rates h3 {
    margin-bottom: 10px;
    color: #003366;
}

.exchange-rates ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.exchange-rates li {
    padding: 4px 0;
}

.converter input, 
.converter select, 
.converter button {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    padding: 6px;
    font-size: 14px;
    font-weight: bold;
}

.converter button {
    background-color:var(--color-navy);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.converter button:hover {
    background-color: #003366;
}

#conversion-result {
    margin-top: 8px;
    color: #003366;
}

/* Estilos para la Calculadora de ROI */
.roi-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.roi-input-group {
    margin-bottom: 15px;
    text-align: left;
}

.roi-input-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.roi-input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
}

/* Estilos de la Tabla de Resultados */
#roi-results-table {
    width: 100%;
    margin-top: 25px;
    border-collapse: collapse;
    font-family: var(--font-body);
}

#roi-results-table th {
    background-color: var(--color-botones, #7EA8BE);
    color: white;
    padding: 10px;
    font-weight: 700;
    border-radius: 5px 5px 0 0;
}

#roi-results-table td {
    padding: 10px;
    border: 1px solid #ffffff;
}

#roi-results-table tbody tr:last-child {
    font-weight: 700;
}

/* Resaltado del resultado ROI */
.result-highlight {
    color: var(--color-coral, #C2948A); 
    font-size: 1.2rem;
}

.roi-good {
    color: #28a745; /* Verde fuerte si el ROI es bueno */
}