¿Necesitas Ayuda?
Estamos aquí para ofrecerte la mejor atención y resolver cualquier duda que tengas.
/* Encapsulado para que no afecte fuera */
.radrik-contacto {
max-width: 480px;
background: #fff;
padding: 30px 40px;
border-radius: 12px;
box-shadow: 0 12px 25px rgba(0,0,0,0.1);
border-top: 6px solid #00BFFF; /* Azul cian */
border-bottom: 6px solid #FF5500; /* Naranja fire */
margin: 30px auto;
font-family: ‘Montserrat’, sans-serif;
color: #222;
animation: fadeInUp 1s ease forwards;
opacity: 0;
transform: translateY(30px);
}
.radrik-contacto h1 {
color: #00BFFF;
margin-bottom: 15px;
font-weight: 700;
font-size: 1.8rem;
letter-spacing: 1.5px;
animation: fadeInDown 1s ease forwards;
text-align: center;
}
.radrik-contacto p.lead {
margin-bottom: 30px;
font-size: 1rem;
line-height: 1.5;
color: #555;
text-align: center;
}
.radrik-contacto .info-section {
margin-bottom: 25px;
animation: fadeIn 1.2s ease forwards;
opacity: 0;
}
.radrik-contacto .info-section:nth-child(2) { animation-delay: 0.2s; }
.radrik-contacto .info-section:nth-child(3) { animation-delay: 0.4s; }
.radrik-contacto .info-section:nth-child(4) { animation-delay: 0.6s; }
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
to {
opacity: 1;
}
}
.radrik-contacto .info-section h2 {
font-size: 1.2rem;
margin-bottom: 8px;
color: #FF5500;
}
.radrik-contacto .address,
.radrik-contacto .contact,
.radrik-contacto .schedule {
font-size: 0.95rem;
line-height: 1.5;
color: #222;
word-wrap: break-word;
}
.radrik-contacto .schedule table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
table-layout: fixed;
word-wrap: break-word;
}
.radrik-contacto .schedule th,
.radrik-contacto .schedule td {
text-align: left;
padding: 6px 8px;
border-bottom: 1px solid #ddd;
font-weight: 500;
}
.radrik-contacto .schedule th {
color: #00BFFF;
font-weight: 700;
width: 40%;
}
.radrik-contacto .schedule td {
width: 60%;
color: #555;
}
.radrik-contacto a {
color: #00BFFF;
text-decoration: none;
transition: color 0.3s ease;
word-break: break-word;
}
.radrik-contacto a:hover,
.radrik-contacto a:focus {
color: #FF5500;
outline: none;
}
/* Responsive */
@media (max-width: 520px) {
.radrik-contacto {
padding: 20px 25px;
max-width: 100%;
margin: 20px 10px;
}
.radrik-contacto h1 {
font-size: 1.5rem;
}
}
Contacto Radrik-Com
/* Contenedor general para la sección, medidas controladas */
#contacto {
max-width: 400px;
margin: 30px auto;
padding: 20px;
border-radius: 12px;
background: #f0f8ff;
box-shadow: 0 6px 15px rgba(0, 123, 255, 0.2);
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
}
#contacto h2 {
text-align: center;
color: #007bff;
font-weight: 700;
margin-bottom: 25px;
font-size: 1.8rem;
}
label {
display: block;
margin-bottom: 6px;
font-weight: 600;
color: #333;
}
input[type=”text”],
input[type=”email”],
textarea {
width: 100%;
padding: 10px 12px;
margin-bottom: 15px;
border-radius: 8px;
border: 1.8px solid #007bff;
font-size: 1rem;
resize: vertical;
transition: border-color 0.3s ease;
}
input[type=”text”]:focus,
input[type=”email”]:focus,
textarea:focus {
border-color: #0056b3;
outline: none;
}
textarea {
min-height: 100px;
}
.botones {
display: flex;
justify-content: space-between;
}
button {
background-color: #007bff;
border: none;
padding: 12px 22px;
color: white;
font-weight: 700;
font-size: 1rem;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
flex: 1;
margin-right: 10px;
display: flex;
align-items: center;
justify-content: center;
}
button:last-child {
background-color: #ccc;
color: #333;
margin-right: 0;
}
button:hover {
background-color: #0056b3;
}
button:last-child:hover {
background-color: #999;
}
/* Icono WhatsApp en el botón enviar */
.btn-whatsapp svg {
width: 22px;
height: 22px;
margin-left: 8px;
fill: white;
}
/* Texto de protección reCAPTCHA */
.recaptcha-info {
font-size: 0.75rem;
color: #666;
margin-top: 12px;
font-style: italic;
line-height: 1.3;
}
/* Para asegurar que no afecte otros estilos */
#contacto * {
box-sizing: border-box;
}