/* Fonts */
@font-face {
    font-family: 'Orgon';
    src: url('Orgon-Black.otf') format('opentype'),
         url('Orgon-Black 2.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Orgon';
    src: url('Orgon-ExtraBold.otf') format('opentype'),
         url('Orgon-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Orgon';
    src: url('Orgon W03 Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Orgon';
    src: url('Orgon-LightIt.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-blue: #2D3A4B;
    --light-blue: #ADD8E6;
    --dark-gray: #333333;
    --medium-gray: #555555;
    --white: #FFFFFF;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-blue: rgba(45, 58, 75, 0.8);
}

body {
    font-family: 'Orgon', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--dark-blue);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.tagline {
    color: var(--white);
    font-size: 0.85rem;
    margin: 0;
}

.slogan {
    color: var(--white);
    font-size: 1.563rem;
    margin: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.063rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--light-blue);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    z-index: 1;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    font-size: 3rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--white);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-title-custom {
    font-family: 'Orgon', sans-serif;
    font-weight: 900;
    font-size: 54pt;
}

/* Empresa Section */
.empresa {
    background-color: var(--white);
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
   /* margin-bottom: 20px;*/
    color: var(--dark-gray);
}

.empresa-title {
    font-family: 'Orgon', sans-serif;
    font-weight: 800;
    font-size: 36pt;
}

.section-title.white {
    color: var(--white);
}

.servicios-title {
    font-family: 'Orgon', sans-serif;
    font-weight: 800;
    font-size: 36pt;
}

.cotiza-title {
    font-family: 'Orgon', sans-serif;
    font-weight: 800;
    font-size: 38pt;
}

.section-title.left-align {
    text-align: left;
}

.cobertura-title {
    font-family: 'Orgon', sans-serif;
    font-weight: 900;
    font-size: 40pt;
    line-height: 1;
    text-align: left;
    margin-top: 0;
    margin-bottom: 20px;
}

.empresa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    grid-template-areas: "text image";
}

.empresa-text {
    grid-area: text;
    font-family: 'Orgon', sans-serif;
    font-size: 12pt;
    line-height: 1.8;
    color: var(--dark-gray);
    text-align: center;
    order: 1;
}

.empresa-image {
    grid-area: image;
    order: 2;
}

.empresa-text p {
    font-family: 'Orgon', sans-serif;
    font-style: italic;
    font-size: 12pt;
    margin-bottom: 20px;
    text-align: center;
}

.empresa-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.empresa-decorative-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.highlight-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(173, 216, 230, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.highlight-circle p {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}

/* Servicios Section */
.servicios {
    background-color: var(--dark-gray);
    padding: 80px 0;
}

.section-subtitle {
    font-family: 'Orgon', sans-serif;
    font-weight: 800;
    font-size: 18pt;
    text-align: center;
    color: var(--white);
    margin-bottom: 30px;
}

.servicios-intro {
    font-family: 'Orgon', sans-serif;
    font-style: italic;
    font-size: 14pt;
    text-align: center;
    color: var(--white);
    margin-bottom: 30px;
}

.servicios-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--white);
    font-family: 'Orgon', sans-serif;
    font-style: italic;
    font-size: 14pt;
    line-height: 0.8;
    text-align: center;
    padding: 0;
}

.servicios-list li {
    font-family: 'Orgon', sans-serif;
    font-style: italic;
    font-size: 14pt;
    padding: 3px 15px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 0.8;
}

.servicios-list li::before {
    content: "•";
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.servicios-conclusion {
    font-family: 'Orgon', sans-serif;
    font-style: italic;
    font-size: 37pt;
    line-height: 1;
    text-align: left;
    color: var(--white);
    font-weight: 500;
}

.servicios-final-text {
    font-family: 'Orgon', sans-serif;
    font-style: italic;
    font-size: 14pt;
    text-align: center;
    color: var(--white);
    font-weight: 500;
    margin-top: 30px;
}

/* Cobertura Section */
.cobertura {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-image: url('COBERTURA 2 MAPA MEXICO.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
}

.cobertura-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  /*  background: rgba(45, 58, 75, 0.7);*/
    z-index: 1;
    pointer-events: none;
}

.cobertura-main {
    position: relative;
    z-index: 2;
}

.cobertura-top-right {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.cobertura-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 40px;
    z-index: 2;
}

.cobertura-text-left {
    font-family: 'Orgon', sans-serif;
    font-style: italic;
    font-size: 27pt;
    line-height: 1;
    color: var(--white);
    font-weight: 500;
    text-align: left;
}

.cobertura-text-right {
    font-family: 'Orgon', sans-serif;
    font-style: italic;
    font-size: 27pt;
    line-height: 1;
    color: var(--white);
    font-weight: 500;
    text-align: right;
}



/* Cotiza Section */
.cotiza {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cotiza-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cotiza-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cotiza-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  /*  background: var(--overlay-blue);*/
    z-index: 1;
}

.cotiza .container {
    position: relative;
    z-index: 1;
}

.cotiza-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.cotiza-contact {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--white);
}

.contact-icon-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-link:hover {
    transform: scale(1.05);
}

.whats-icon {
    width: auto;
    height: 67px;
    object-fit: contain;
    margin-bottom: 10px;
}

.carta-icon {
    width: auto;
    height: 81px;
    object-fit: contain;
    margin-bottom: 10px;
}

.contact-label {
    font-family: 'Orgon', sans-serif;
    font-weight: 800;
    font-size: 25pt;
    color: var(--white);
    margin-bottom: 5px;
}

.contact-value {
    color: var(--white);
    font-size: 1.813rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link .contact-value:hover {
    color: var(--light-blue);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quote-form input,
.quote-form textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    color: var(--dark-gray);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    font-family: 'Orgon', sans-serif;
    font-style: italic;
    font-size: 12pt;
    color: var(--medium-gray);
}

.quote-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-enviar {
    padding: 15px 40px;
    background-color: var(--dark-gray);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-family: 'Orgon', sans-serif;
    font-weight: 800;
    font-size: 12pt;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 10px auto 0;
    width: fit-content;
}

.btn-enviar:hover {
    background-color: var(--medium-gray);
}

.btn-cotiza-aqui {
    background-color: #125aae;
    display: block;
    margin: 10px auto 0;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    width: fit-content;
}

.btn-cotiza-aqui:hover {
    background-color: #0f4a8a;
}

.cotiza-logo {
    text-align: center;
    margin-top: 60px;
    color: var(--white);
}

.cotiza-logo-img {
    height: 140px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
    /*filter: brightness(0) invert(1);*/
}

.cotiza-logo span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.cotiza-logo p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    padding: 60px 0 20px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-left-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.footer-right-column {
    display: flex;
    flex-direction: column;
}

.footer-map-section {
    width: 100%;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-item i {
    font-size: 1.5rem;
    margin-top: 5px;
    color: var(--white);
}

.footer-icon-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-top: 5px;
}

.footer-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-title {
    font-family: 'Orgon', sans-serif;
    font-weight: 800;
    font-size: 6pt;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-item p {
    line-height: 1.5;
    color: var(--white);
    opacity: 0.9;
}

.footer-address {
    font-family: 'Orgon', sans-serif;
    font-style: italic;
    font-size: 16pt;
    line-height: 1.5;
    color: var(--white);
    opacity: 0.9;
}

.footer-map {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 5px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
}

.copyright-text {
    font-family: 'Orgon', sans-serif;
    font-style: italic;
    font-size: 5pt;
    color: var(--white);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .empresa-content {
        grid-template-columns: 1fr;
        grid-template-areas: "text" "image";
        gap: 30px;
    }

    .empresa-text {
        text-align: center;
        order: 1;
    }

    .empresa-image {
        order: 2;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .empresa-decorative-img {
        max-width: 100%;
        height: auto;
    }

    .highlight-circle {
        position: relative;
        width: 250px;
        height: 250px;
        transform: none;
        margin: 20px auto;
        padding: 20px;
    }

    .highlight-circle p {
        font-size: 1.2rem;
    }

    .cotiza-content {
        grid-template-columns: 1fr;
    }

    .cobertura {
        padding: 60px 0;
        min-height: 400px;
        background-size: cover;
        background-position: center;
    }

    .cobertura-title {
        font-size: 28pt;
    }

    .servicios-conclusion {
        font-size: 24pt;
    }

    .cobertura-main {
        display: flex;
        flex-direction: column;
    }

    .cobertura-top-right {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        padding: 0;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .cobertura-text-right {
        font-size: 18pt;
        text-align: center;
    }

    .cobertura-text-left {
        font-size: 18pt;
    }

    .cobertura-content {
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }

    .cobertura-text.left,
    .cobertura-text.right {
        text-align: left;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
    }

    .nav.active {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark-blue);
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        pointer-events: none;
    }

    .nav.active {
        right: 0;
        pointer-events: auto;
    }

    .nav-link {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.2rem;
        display: block;
    }

    .header-container {
        position: relative;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo-section {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }

    .slogan {
        display: none;
    }

    .servicios-list {
        padding: 0 10px;
        line-height: 0.8;
    }

    .servicios-list li {
        font-size: 12pt;
        padding: 3px 10px;
        margin-bottom: 4px;
        flex-wrap: nowrap;
        text-align: left;
        line-height: 0.8;
        justify-content: flex-start;
        gap: 5px;
    }

    .servicios-list li::before {
        flex-shrink: 0;
        margin-right: 0;
    }

    .servicios-list li::before {
        flex-shrink: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .empresa-content {
        grid-template-columns: 1fr;
        grid-template-areas: "text" "image";
        gap: 20px;
    }

    .empresa-text {
        text-align: center;
        font-size: 11pt;
        order: 1;
    }

    .empresa-text p {
        font-size: 11pt;
    }

    .empresa-image {
        order: 2;
        margin-top: 20px;
    }

    .empresa-decorative-img {
        max-width: 100%;
        height: auto;
    }

    .highlight-circle {
        width: 200px;
        height: 200px;
        padding: 15px;
        margin: 15px auto;
    }

    .highlight-circle p {
        font-size: 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-value {
        font-size: 1.2rem;
    }

    .servicios-list {
        padding: 0 15px;
        line-height: 1.0;
    }

    .servicios-list li {
        font-size: 11pt;
        padding: 3px 5px;
        margin-bottom: 4px;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 5px;
        line-height: 1.3;
        justify-content: flex-start;
        text-align: left;
    }

    .servicios-list li::before {
        flex-shrink: 0;
        margin-right: 0;
    }

    .servicios-list li::before {
        margin-bottom: 5px;
    }

    .cobertura {
        padding: 40px 0;
        min-height: 300px;
        background-size: cover;
        background-position: center;
    }

    .cobertura-title {
        font-size: 20pt;
        margin-bottom: 15px;
    }

    .cobertura-subtitle {
        font-size: 18pt;
        line-height: 1.3;
    }

    .servicios-conclusion {
        font-size: 18pt;
        line-height: 1.3;
    }

    .cobertura-main {
        display: flex;
        flex-direction: column;
    }

    .cobertura-top-right {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 15px;
        padding: 0;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .cobertura-text-right {
        font-size: 14pt;
        line-height: 1.3;
        text-align: center;
    }

    .cobertura-text-left {
        font-size: 14pt;
        line-height: 1.3;
    }

    .cobertura-bottom {
        padding: 0 15px;
        padding-bottom: 15px;
    }
}
