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

body {
    font-family: 'Open Sans', sans-serif;
    color: #464344;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Maven Pro', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.nav-item {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    z-index: 999;
    border-radius: 4px;
}

.submenu li a {
    display: block;
    padding: 10px 15px;
    color: #464344;
    font-size: 14px;
    white-space: nowrap;
}

.submenu li a:hover {
    background-color: #f5f5f5;
    color: #F5B92D;
}

.nav-item:hover .submenu {
    display: block;
}

.boton3d {
    background-image:url(https://coagra.cl/wp-content/uploads/2024/12/button.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size:100% 100%;
    border-radius:20px;
    transition:ease 1s;
    border:inset solid 0px white;
  
  }
  
  .boton3d:hover{
    background-image:url(https://coagra.cl/wp-content/uploads/2024/12/button.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size:110% 110%;
    border-radius:20px;
    
      box-shadow: inset green 0px 0px 20px -5px; 
      box-shadow: #00991C 5px 10px 20px -5px; 
    
    transition:ease 1s;
    border: inset solid 2px white;
  }
  
  
  
  .boton3d2 {
    background-image:url(https://coagra.cl/wp-content/uploads/2024/12/button2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size:100% 100%;
    border-radius:20px;
    transition:ease 1s;
  
    border:inset solid 0px white;
  
  }
  
  .boton3d2:hover{
    background-image:url(https://coagra.cl/wp-content/uploads/2024/12/button2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size:110% 110%;
    border-radius:20px;
    
      box-shadow: inset #C77925 0px 0px 20px -5px; 
      box-shadow: #CE7925 5px 10px 20px -5px; 
    
    transition:ease 1s;
    border: inset solid 2px white;
  }
  



.btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Maven Pro', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #00A228;
    color: white;
}

.btn-primary:hover {
    background-color: #008620;
}

.btn-secondary {
    background-color: #F5B92D;
    color: white;
}

.btn-secondary:hover {
    background-color: #e5ac20;
}


.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

.logo img {
    height: 40px;
}

.nav-menu {
    align-items: flex-start;
    display: flex;
    gap: 20px;
}

.nav-item {
    align-items: flex-start;
    position: relative;
}

.nav-item a {
    color: #464344;
    font-weight: 500;
    padding: 5px 0;
    font-family: 'Maven Pro', sans-serif;
}

.nav-item.active a {
    color: #F5B92D;
}

.nav-item.dropdown a i {
    font-size: 12px;
    margin-left: 5px;
}

.action-buttons {
    display: flex;
    gap: 10px;
}


.two-column-section {
    display: flex;
    width: 100%;
}

.image-column {
    width: 60%;
    background-color: #f2f2f2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://coagra.cl/wp-content/uploads/2021/05/1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(173, 173, 173, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 0 20px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.address-info {
    margin-top: 30px;
}

.address-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.address-info p {
    font-size: 16px;
    margin-bottom: 5px;
}

.form-column {
    width: 50%;
    background-color: #f9f9f9;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.contact-form h2 {
    color: #464344;
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group input,
.form-group textarea,
.form-group select {
    background-color: #f8f8f8;
    width: 100%;
    padding: 15px 0 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    box-sizing: border-box;
}
.form-group textarea {
    height: 100px;
    resize: vertical;
}
.form-group input[type="submit"] {
    background: linear-gradient(45deg, rgba(232,159,60,1) 0%, rgba(252,203,0,1) 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 15px;
}
#thank-you-message {
    display: none;
    padding: 20px;
    background-color: #f0fdf4;
    border: 1px solid #c4eccf;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}


.footer {
    background-color: #464344;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column h4 {
    font-size: 16px;
    margin: 15px 0 10px;
    font-weight: 600;
}

.footer-column p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #d4d4d4;
}

.footer-link {
    display: block;
    color: #d4d4d4;
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    padding-right: 15px;
}

.footer-link::after {
    content: '›';
    position: absolute;
    right: 0;
    font-size: 16px;
}

.footer-link:hover {
    color: white;
}

.footer-logo {
    margin-top: 15px;
}

.footer-logo img {
    max-width: 100px;
    height: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom a {
    color: #F5B92D;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 15px;
    }

    .nav-menu {

        margin-bottom: 15px;
    }

    .action-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .two-column-section {
        flex-direction: column;
    }

    .image-column,
    .form-column {
        width: 100%;
        height: auto;
    }

    .image-column {
        height: auto;
    }

    .form-column {
        padding: 60px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .nav-menu {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .action-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }

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

    
    .hero-content h1 {
        font-size: 32px;
    }

    .image-column {
        height: 850px;
    }
}


.containerh {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
}


.boton3d {
    background-image: url(https://coagra.cl/wp-content/uploads/2024/12/button.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 20px;
    transition: ease 1s;
    border: inset solid 0px white;

    color: #fff;
    font-size: 12px;
    padding: 11px 25px;
    text-decoration: none;
    display: inline-block;
    font-family: 'Maven Pro', sans-serif;
    font-weight: 500;
}

.boton3d2 {
    background-image: url(https://coagra.cl/wp-content/uploads/2024/12/button2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 20px;
    transition: ease 1s;
    border: inset solid 0px white;

    color: #fff;
    font-size: 12px;
    padding: 11px 25px;
    text-decoration: none;
    display: inline-block;
    font-family: 'Maven Pro', sans-serif;
    font-weight: 500;
}

.boton3d:hover {
    background-size: 110% 110%;
    box-shadow: #00991C 5px 10px 20px -5px;
    border: inset solid 2px white;
}


.action-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}


.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #00A228;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: white;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.mobile-menu .nav-menu,
.mobile-menu .action-buttons {
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 768px) {
    .nav,
    .action-buttons {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
    }
}
