* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    line-height: 1.6;
    overflow-y: none;
    scrollbar-width: none; 
    -ms-overflow-style: none;  
}

body::-webkit-scrollbar {
    display: none;
}

header {
    width: 100%;
    box-sizing: border-box;
    padding: 17px 20px;
    background-color: #110502;
    display: flex;
    align-items: center;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    position: fixed; /* <-- Aquí está el cambio */
}


header::before {
    content: "";
    position: absolute;
    bottom: 0; 
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6600);
    border-radius: 0 0 3px 3px;
}


header img{
    width: 50px;
    background-color: white;
    border: 2px solid #ff6600;
    border-radius: 100%;
    display: flex;
    align-items: center;
    padding: 2px;
}

header h1{
    width: auto;
    color: white;
    font-size: 17px;
    text-align: left;
    margin-left: 5px;
    display: flex;
    flex-wrap: nowrap;
}

header nav {
    position: absolute;
    width: 70%; 
    height: 100vh;
    top: 100%;
    left: 0;
    background-color: #110502;
    display: flex;
    flex-direction: column; 
    gap: 10px;
    padding: 20px;
    align-items: stretch;
    display: none;
}

nav a {
    box-sizing: border-box;
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 15px;
    background-color: #ff6600;
    border-radius: 4px;
    width: 100%; 
    display: block;
}

.btn-menu{
    background: none; 
    border: none; 
    padding: 5px; 
    cursor: pointer;
    border: 2px solid #ff6600;
    margin-left: auto;
    margin-right: 0;
    border-radius: 5px;
    display: flex;
}

/*contendido de la pagina*/
.contenido {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: scroll;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

.contenido::-webkit-scrollbar {
    display: none; 
}

/*hero*/
.hero {
    width: 100%;
    box-sizing: border-box;
    background-image: url('../img/hero2.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 8rem 1rem;
    text-align: center;
    color: white;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}

.hero h1, .hero p {
    position: relative;
    z-index: 1; 
}

.hero h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1rem;
}

.btn-hero {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 12px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer; 
    z-index: 1;
}

.btn-hero:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
}

/*Quienes somoes*/
#quienes-somos{
    text-align: center;
    margin-bottom: 20px;
}

/*Servicios*/
.section {
    width: 95%;
    box-sizing: border-box;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

h3.section-title {
    flex:  100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
}

.servicios {
    width: 100%;
    gap: 20px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
}

.card {
    flex: 1 0 calc(100% - 5px);
    box-sizing: border-box;
    background-color: white;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 
        0 2px 5px rgba(230, 92, 0, 0.63),  0 6px 15px rgba(0, 0, 0, 0.404);     
}

.card img {
    width: 100%;
    height: auto;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    margin-bottom: 15px;
}


.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 40px;
    color: var(--color-principal);
    margin-bottom: 15px;
}

.card h4 {
    margin-bottom: 5px;
    font-size: 20px;
    color: #ff6600;   
}


.card p {
    color: #555;
    padding: 10px;
}

.card button {
    background-color: var(--color-principal);
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

/*contactanos*/
.contact-form-section{
    margin-top: 30px;
}
.contact-background {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 0;
}

.contact-container {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
}

.contact-left,
.contact-right {
    flex: 1 1 300px;
}

.contact-left form {
    display: flex;
    flex-direction: column;
}

.contact-left label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.contact-left input,
.contact-left textarea {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 16px;
    resize: vertical;
}

.contact-left input::placeholder,
.contact-left textarea::placeholder {
    color: #bbb;
}

.contact-left button {
    background-color: var(--color-principal);
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    transition: background-color 0.3s;
}

.contact-left button:hover {
    background-color: #cc5200;
}

.contact-right h4 {
    margin-bottom: 15px;
    color: var(--color-principal);
    font-size: 24px;
}

.contact-right p {
    margin-bottom: 10px;
    font-size: 18px;
    color: #ddd;
    display: flex;
    align-items: center;
}

.contact-right i {
    margin-right: 10px;
    color: var(--color-principal);
    min-width: 20px;
    text-align: center;
}

/*diseño codigo pais*/
#telefono {
    width: 100%;
    padding-left: 100px !important;
    color: white;
    background-color: #333;
    }

.iti {
    width: auto;
    color: white;
}

.iti__country-list {
    background-color: #333 !important;
    color: white !important;
    max-height: 250px !important;
    overflow-y: scroll !important;
    scrollbar-width: none;
    position: relative;
    padding-top: 0 !important;
}


.iti__country-list::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}


.iti__country:hover,
.iti__country.iti__highlight {
    background-color: #ff6600 !important;
    color: white !important;
}

.iti__country-name,
.iti__dial-code {
    color: white !important;
}


.custom-search {
    width: 90%;
    margin: 8px auto;
    padding: 6px 10px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    outline: none;
    background-color: #222;
    color: white;
    display: block;
}



/*Diseño del footer*/
footer {
    background-color: #1b0904;
    text-align: center;
    padding: 40px 20px 20px;
    color: white;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, #ff6600);
    border-radius: 3px 3px 0 0;
}

footer img {
    max-width: 200px;
    margin-bottom: 20px;
}

/*boton de whatsapp*/
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2000;
}
.whatsapp-button i {
    font-size: 28px;
}

/*cookies pagina*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1b0904;
    color: white;
    padding: 15px 20px;
    text-align: center;
    z-index: 1000;
    font-size: 14px;
    display: none;
}

.cookie-banner p a{
    color: #ff6600;
}

#ver-politica {
    color: #ff6600;
    text-decoration: underline;
}

.cookie-banner button {
    margin-left: 15px;
    background: #ff6600;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/*mensaje CRM*/
.swal2-close-custom {
    color: #ff6600 !important;
    font-size: 1.5rem;
}

/*selector de codigo de pais*/



/*Resolucion para computadores*/
@media (min-width: 762px){
    .hero {
        padding: 10rem 1rem;
    } 
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .hero p {
        font-size: 1.5rem;
    }
    .card {
    flex: 1 0 calc(50% - 5px);
    }

}

/*Resolucion para computadores*/
@media (min-width: 1000px){
    .btn-menu{
        display: none;
    }

    .btn-hero {
        margin-top: 25px;
        padding: 10px 14px;
    }

    header nav {
        width: auto;
        box-sizing: border-box;
        height: auto;
        position: relative;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: right;
        margin-left: auto;
        top: 0;
        right: 0;
        padding: 0px;
        display: inline-flex;
    }

    nav a {
        box-sizing: border-box;
        color: white;
        font-weight: bold;
        text-decoration: none;
        padding: 5px;
        background-color: transparent;
        border-radius: 4px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        position: relative;
        margin-right: 5px;
        transition: color 0.4s ease, transform 0.3s ease; 
    }

    nav a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        height: 2px;
        background-color: #ff944d;
        transition: width 0.4s ease, background-color 0.4s ease;
        transform: translateX(-50%);
    }

    nav a:hover {
        color: #ff6600;
        transform: translateY(-2px); 
    }

    nav a:hover::after {
        width: 100%;
        background-color: #ff6600;
    }

    .hero {
        padding: 12rem 1rem;
    }
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    .hero p {
        font-size: 1.8rem;
    }

    .card {
        flex: 1 0 calc(24% - 5px);
    }
}

:root {
      --color-principal: #ff6600;
      --color-secundario: #222222;
      --color-terciario: #fefefe;
      --color-secundario-claro: #444444;
      --color-fondo-claro: #f9f9f9;
      --color-boton-hover: #e65c00;
    }