/* Estilos base */
:root {
    --primary-color: #8b5a2b;
    --secondary-color: #000000;
    --accent-color: #d4af37;
    --text-color: #333333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Botones */
/* .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 14px;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */
.btn-primary {
 
    display: flex;
    padding: 5px 10px !important;
    font-family: 'Georgia', serif; 
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    color: #4B2B0A; 
    text-align: center;
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
    overflow: hidden; 
    position: relative; 
    z-index: 1;
    width: 150px;
    height: 40px;
    align-items: center;
    justify-content: center;

    /* Fondo degradado dorado inicial */
    background: linear-gradient(to right, #FFD700 0%, #DAA520 50%, #B8860B 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 

    
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}


.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; 
    width: 200%;
    height: 50%;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0) 0%,      /* Transparente */
        rgba(255, 255, 255, 0.5) 40%,  
        rgba(255, 255, 255, 0.8) 50%,  
        rgba(255, 255, 255, 0.5) 60%,   
        rgba(255, 255, 255, 0) 100%     
    );
    transform: skewX(-20deg); 
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); 
    z-index: -1; 
}

.btn-primary:hover {
   
    /* border-radius: 10px; */
    background: linear-gradient(to right, #B8860B 0%, #DAA520 50%, #FFD700 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); 
  
  
    transform: translateY(-2px);
}


.btn-primary:hover::before {
    left: -50%; 
}
.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
     
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.logo h2 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--primary-color);
    
}

.logo p {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}



/* ------------------menu------------------ */
.navbar ul {
    display: flex;
    gap: 30px;
    align-items: right;
    
    
}

.navbar a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
    
}

.navbar a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.navbar a:hover:after,
.navbar a.active:after {
    width: 100%;
}

/* .btn-contact {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 30px;
}

.btn-contact:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
} */
/* --------------------------------- */
.btn-contact {
 
    display: flex;
    padding: 5px 10px !important;
    font-family: 'Georgia', serif; 
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    color: #4B2B0A; 
    /* text-align: center; */
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
    overflow: hidden; 
    position: relative; 
    z-index: 1;

    /* Fondo degradado dorado inicial */
    background: linear-gradient(to right, #FFD700 0%, #DAA520 50%, #B8860B 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 

    
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}


.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; 
    width: 200%;
    height: 50%;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0) 0%,      /* Transparente */
        rgba(255, 255, 255, 0.5) 40%,  
        rgba(255, 255, 255, 0.8) 50%,  
        rgba(255, 255, 255, 0.5) 60%,   
        rgba(255, 255, 255, 0) 100%     
    );
    transform: skewX(-20deg); 
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); 
    z-index: -1; 
}

.btn-contact:hover {
   
    /* border-radius: 10px; */
    background: linear-gradient(to right, #B8860B 0%, #DAA520 50%, #FFD700 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); 
  
  
    transform: translateY(-2px);
}


.btn-contact:hover::before {
    left: -50%; 
}
/* ------------------- */

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */


.hero {
    height: 100vh; /* Ocupa la altura completa de la ventana */
    /* Degradado sutil con tonos crema/dorados, estilo Ferrero */
    background: linear-gradient(to bottom, #FAF8F2, #faf8f2c4); 
    display: flex; /* Permite alinear el marco inicial */
    align-items: center; /* Centra verticalmente el hero-marco-inicial */
    justify-content: center; /* Centra horizontalmente el hero-marco-inicial */
    padding-top: 60px; /* Quitamos el padding global del hero para que el marco tenga control total */
}

.hero-marco-inicial {
    width: 80%; /* Ancho total del "marco" que contiene imagen y texto */
    max-width: 1200px; /* Ancho máximo para pantallas grandes */
    height: 70vh; /* Altura del marco, ajusta según necesidad */
    background-color: #FAF8F2; /* Fondo blanco para el marco */
    
    box-shadow: 0 10px 40px #FCF0DB, 0 0 0 2px var(--secondary-color); /* Sombra elegante y un borde dorado fino */
    display: flex; /* Para que hero-image y hero-content se coloquen lado a lado */
    overflow: hidden; /* Asegura que la imagen no se desborde del marco */
    margin: 0 auto; /* Centrar el marco horizontalmente */
    margin-top: 100px;
}

.hero-image {
    flex: 1; /* Permite que la imagen ocupe el espacio restante */
    max-width: 50%; /* La imagen ocupa la mitad del ancho del marco */
    height: 100%; /* La imagen ocupa la altura completa del marco */
    overflow: hidden; /* Para que la imagen no se desborde si es muy grande */
    position: relative; /* Para el object-fit */
}

.hero-image img {
    width: 100%; /* La imagen dentro de hero-image ocupa todo el ancho del contenedor */
    height: 100%; /* La imagen dentro de hero-image ocupa toda la altura del contenedor */
    object-fit: cover; /* Ajusta la imagen para que cubra el área sin distorsionarse */
    object-position: center; /* Centra la imagen dentro de su contenedor */
    border-radius: 0; /* Quitamos los bordes redondeados aquí para que se ajusten al contenedor */
    box-shadow: none; /* Quitamos la sombra aquí, ya que el marco ya tiene una */
    margin: 0; /* Quitamos los márgenes */
    padding: 0;
}

.hero-content {
    flex: 1; /* Permite que el contenido ocupe el espacio restante */
    max-width: 50%; /* El contenido ocupa la otra mitad del ancho del marco */
    display: flex; /* Para centrar el contenido dentro de esta columna */
    flex-direction: column; /* Apila los elementos verticalmente */
    justify-content: center; /* Centra el contenido verticalmente */
    align-items: center; /* Centra el contenido horizontalmente */
    padding: 40px; /* Más padding para el contenido */
    text-align: center; /* Alinea el texto al centro */
    
}

.hero h1 {
    font-size: 4rem; /* Ajuste el tamaño para que quepa bien */
    margin-bottom: 20px;
    color: #D5AC5B; /* Color marrón oscuro */
    text-shadow: 2px 2px 5px var(--shadow-color); /* Sombra más definida */
    line-height: 1.2; /* Espaciado entre líneas para mejor lectura */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px; /* Más espacio antes del botón */
    color: var(--text-color); /* Color de texto general */
    max-width: 80%; /* Limita el ancho del párrafo para legibilidad */
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color); /* Botón dorado */
    color: #4B2B0A;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px var(--gold-shadow); /* Sombra dorada para el botón */
}

.btn-primary:hover {
    background-color: darken(var(--secondary-color), 10%); /* Dorado más oscuro al pasar el ratón */
    transform: translateY(-2px); /* Efecto de levantamiento sutil */
}

/* Media Queries para Responsividad */
@media (max-width: 992px) {
    .hero-marco-inicial {
        width: 90%;
        height: auto; /* Altura automática en pantallas más pequeñas */
        flex-direction: column; /* Apila la imagen y el contenido verticalmente */
    }
    .hero-image,
    .hero-content {
        max-width: 100%; /* Ocupan todo el ancho disponible */
        height: auto; /* Altura automática */

    }
    .hero-image img {
        height: 300px; /* Altura fija para la imagen en móviles */
        border-radius: 100%;
        
    }
    .hero h1 {
        font-size: 2.5rem; /* Reducir tamaño de título en móviles */
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-content {
        padding: 30px 20px; /* Ajustar padding para móviles */
    }
}



/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient( #FBF9F5,#ffffff);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    /* text-align: center; */
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Testimonials Section */
/* .testimonials {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin: 0 15px;
}

.testimonial-content {
    text-align: center;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    text-align: left;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
} */
/* Testimonios - Sección General */







:root {
    --primary-color: #8B4513; /* Un marrón chocolate oscuro o sepia para el texto principal */
    --secondary-color: #DAA520; /* Dorado para detalles y acentos */
    /* --light-bg: #FFF8E1; Un color crema muy claro, casi blanco roto, para fondos */
    --white: #FFFFFF;
    --text-color: #333; /* Color de texto general */
    --shadow-color: rgba(0, 0, 0, 0.08); /* Sombra un poco más pronunciada */
    
}
.testimonials {
    padding: 100px 0;
    /* Usamos un fondo crema muy claro para la sección */
    /* background-color: var(--light-bg); */
    background: linear-gradient( #ffffff,#F8F4EC);
    
}

/* Título de la Sección */
.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    /* Un color marrón oscuro para el título, elegante */
    color: var(--primary-color);
    /* Puedes añadir un sombreado sutil al texto para un efecto más profundo */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
/* Contenedor del desplazamiento horizontal */
.testimonial-scroll-container {
    max-width: 100%; /* Asegura que no se desborde del contenedor padre */
    overflow-x: auto; /* Permite el desplazamiento horizontal si el contenido es demasiado ancho */
    overflow-y: hidden; /* Oculta cualquier barra de desplazamiento vertical */
    white-space: nowrap; /* Evita que los testimonios salten de línea */
    padding-bottom: 20px; /* Espacio para la barra de desplazamiento si aparece */
    scroll-behavior: smooth; /* Hace el desplazamiento más suave */

    /* Para que los elementos se posicionen en una línea */
    display: flex; /* Usa Flexbox para colocar los testimonios en línea */
    gap: 30px; /* Espacio entre cada testimonio */
    /* Puedes ajustar el padding lateral para que no estén pegados a los bordes */
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto; /* Centra el contenedor si es más pequeño que el 100% */
}

/* Opcional: Estilo de la barra de desplazamiento (solo Chrome/Safari/Edge) */
.testimonial-scroll-container::-webkit-scrollbar {
    height: 10px; /* Altura de la barra de desplazamiento horizontal */
}

.testimonial-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color de fondo de la pista */
    border-radius: 5px;
}

.testimonial-scroll-container::-webkit-scrollbar-thumb {
    background: var(--secondary-color); /* Color dorado para el "pulgar" de la barra */
    border-radius: 5px;
}




/* Contenedor del Slider */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    /* Opcional: una sombra sutil para el contenedor del slider */
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); */
}

/* Cada Testimonio Individual */
.testimonial {
    background: var(--white); /* Fondo blanco para el testimonio */
    padding: 40px;
    border-radius: 10px;
    /* Sombra más pronunciada y con un ligero tinte dorado o cálido */
    box-shadow: 0 8px 40px var(--shadow-color);
    margin: 10px 15px;
    /* Borde sutil dorado */
    border: 1px solid var(--secondary-color);
    /* Transición para efectos de hover o interactividad */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto al pasar el ratón por encima (opcional) */
.testimonial:hover {
    transform: translateY(-5px); /* Pequeño levantamiento */
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.12); /* Sombra más intensa */
}

/* Contenido del Testimonio */
.testimonial-content {
    text-align: center;
}

/* Párrafo del Testimonio */
.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    text-align: left; /* Mantener la alineación original */
    color: var(--text-color); /* Color de texto general */
}

/* Autor del Testimonio */
.testimonial-author h4 {
    /* Color principal (marrón oscuro) para el nombre del autor */
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: bold; /* Nombre del autor un poco más destacado */
}

/* Descripción del Autor (Cargo, Empresa) */
.testimonial-author p {
    font-size: 0.9rem;
    /* Un gris más cálido o un tono más claro del primary-color */
    color: #777;
    margin-bottom: 0;
}
/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.2);
}

/* Footer */
.footer {
    background-color: #111;
    color: #aaa;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.legal-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.legal-links a {
    color: #777;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-legal {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-legal p {
    font-size: 0.9rem;
    color: #777;
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: right;
        justify-content: flex-start;
        padding: 40px 0;
        transition: var(--transition);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .navbar.active {
        left: 0;
    }

    .navbar ul {
        flex-direction: column;
        width: 100%;
        text-align: right;
        
    }

    .navbar a {
        display: block;
        padding: 15px 0;
        
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
    .hero img {
        width: 90px;
        height: auto;
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about, .services, .testimonials, .contact {
        padding: 70px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 7px 20px;
        font-size: 13px;
    }

    .testimonial {
        padding: 30px 20px;
    }

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

/* Estilos para las páginas de servicios */
.service-detail {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.service-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-features {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 50px 0;
}

.service-features h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.service-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-features i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Estilos para las tarjetas de tipos de propiedades */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.type-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    padding: 30px 20px;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.type-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-block;
}

.type-card h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.type-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Estilos para el proceso de tasación */
.valuation-process {
    margin: 60px 0;
}

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

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 40px;
    right: -25px;
    font-size: 2rem;
    color: var(--accent-color);
    transform: rotate(0deg);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.process-step p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sección CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    color: white;
    margin: 80px 0;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 600;
    padding: 12px 35px;
    font-size: 1.1rem;
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: white;
}

/* Factores de valoración */
.valuation-factors {
    margin: 60px 0;
}

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

.factor {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.factor i {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-block;
}

.factor h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.factor p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive para páginas de servicios */
@media (max-width: 992px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .service-content h2 {
        font-size: 2rem;
    }
    
    .service-features ul {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .factors-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .service-features {
        padding: 30px 20px;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h3 {
        font-size: 1.6rem;
    }
}
.logos {
    width: 40%;
    height: auto;
    margin-left: 30%;
}
