/* Forzar visibilidad y tamaño del checkbox de política de datos en aplicar a vacante */
#chkPoliticaDatos {
  min-width: 18px;
  min-height: 18px;
  width: 18px;
  height: 18px;
  accent-color: #28a745;
  display: inline-block !important;
  opacity: 1 !important;
  position: static !important;
}
/* Enlace admin minimalista en menú */
.admin-link {
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    padding: 8px 10px;
    color: var(--gold) !important;
    font-size: 1.25rem;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}
.admin-link:hover {
    background: var(--gold);
    color: var(--navy) !important;
}
/* Logo principal en el header */
.site-logo {
    height: 128px;
    width: auto;
    margin-right: 16px;
    display: block;
}
/* Paleta de colores profesional */
:root {
    --navy: #1E3A8A;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --dark-green: #2F855A;
    --gold: #BFA181;
    --text: #333333;
    --border: #E5E7EB;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Estilos globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--navy);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--gold);
    color: var(--text);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 64px;
    width: auto;
    margin-right: 12px;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Header */
header {
    background-color: var(--navy);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    height: 72px;
    display: flex;
    align-items: center;
}

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

.logo {
    color: var(--white);
    font-size: 1.9rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--gold);
}

.logo span {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.05rem;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 1.7rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.85)), url('https://images.unsplash.com/photo-1573164713988-8665fc963095?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 45px;
}

/* Servicios */
.services {
    background-color: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
}

.service-header {
    background-color: var(--navy);
    color: white;
    padding: 25px;
    text-align: center;
}

.service-header h3 {
    font-size: 1.8rem;
}

.service-body {
    padding: 35px;
}

.service-body ul {
    list-style: none;
    margin: 25px 0;
}

.service-body ul li {
    padding: 10px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.05rem;
}

.service-body ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--dark-green);
    font-size: 1.1rem;
}

/* Oferta Especial */
.offer {
    background-color: var(--dark-green);
    color: white;
    padding: 70px 0;
    text-align: center;
}

.offer-content {
    max-width: 800px;
    margin: 0 auto;
}

.offer h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.offer p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.offer-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 35px;
}

/* Nosotros */
.about {
    padding: 90px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--light-gray);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.signature {
    margin-top: 30px;
    font-style: italic;
    color: var(--navy);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.signature:before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-right: 15px;
}

/* Clientes */
.clients {
    background-color: var(--light-gray);
    padding: 90px 0;
}

.clients-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.clients-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.client-item {
    min-width: 300px;
    max-width: 330px;
    min-height: 420px;
    max-height: 540px;
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    margin: 0 15px;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.client-logo {
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-height: 100%;
    max-width: 100%;
}

.client-quote {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text);
    max-height: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    transition: max-height 0.3s;
}

.client-quote.expanded {
    white-space: normal;
    overflow: auto;
    max-height: 300px;
    background: #f9f9f9;
    border-radius: 6px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(30,58,138,0.07);
    cursor: zoom-out;
}
}

.client-name {
    font-weight: 600;
    color: var(--navy);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--navy);
    transform: scale(1.2);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--dark-green);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Blog */
.blog {
    padding: 90px 0;
}

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

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.blog-content p {
    color: var(--text);
    margin-bottom: 20px;
}

/* Contacto Section */
.contact {
    padding: 90px 0;
    background: linear-gradient(rgba(30, 58, 138, 0.05), rgba(30, 58, 138, 0.05));
}

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

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    outline: none;
}

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

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-option:hover {
    background: var(--navy);
    color: white;
    transform: translateX(5px);
}

.contact-option i {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
}

/* Calendar Section */
.calendar-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.calendar-container h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 30px;
    text-align: center;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav {
    display: flex;
    gap: 15px;
}

.calendar-nav button {
    background: var(--navy);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.calendar-nav button:hover {
    background: var(--dark-green);
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.calendar-day {
    padding: 12px 0;
    font-weight: 600;
    color: var(--navy);
}

.calendar-date {
    padding: 15px 0;
    border-radius: 8px;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-date:hover {
    background: var(--gold);
    color: var(--navy);
}

.calendar-date.selected {
    background: var(--dark-green);
    color: white;
}

.calendar-date.unavailable {
    background: #e0e0e0;
    color: #a0a0a0;
    cursor: not-allowed;
}

.time-slots {
    margin-top: 30px;
}

.time-slots h4 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--navy);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 12px;
    background: var(--light-gray);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.time-slot:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.time-slot.selected {
    background: var(--dark-green);
    color: white;
    border-color: var(--dark-green);
}

.time-slot.unavailable {
    background: #f0f0f0;
    color: #b0b0b0;
    cursor: not-allowed;
}

.confirm-btn {
    margin-top: 30px;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--navy);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .about-content {
        flex-direction: column;
    }
    .section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        background: var(--navy);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all 0.4s ease;
    }
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .nav-menu li {
        margin: 15px 0;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .offer-buttons {
        flex-direction: column;
        align-items: center;
    }
    .section-title h2 {
        font-size: 2.3rem;
    }
    .carousel-btn {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .slot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
