/* ============================================
   Estudio IKA - Layout Simply Amazed + Paleta Custom
   Colores: #030224, #800670, #f5f5f5
============================================ */

/* === RESET & BASE === */
::after, ::before { line-height: normal; }

body {
    font-family: 'Source Sans Pro', 'Open Sans', sans-serif;
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.5;
    background-color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

ol:after, ul:after {
    content: "";
    display: block;
    line-height: 0;
    clear: both;
    overflow: hidden;
    height: 0;
}

p, .font-weight-light { font-weight: 300; }

img {
    border: 0;
    height: auto;
    max-width: 100%;
}

a {
    color: #800670;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #030224;
    text-decoration: none;
}

a:focus {
    outline: 0;
    color: #030224;
}

/* === BTN === */
.btn {
    white-space: normal;
    cursor: pointer;
    font-size: 16px;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    color: #fff;
    background-color: #800670;
    border-color: transparent;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    color: #fff;
    background-color: #030224;
    border-color: transparent;
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
    background-color: #030224;
    border-color: transparent;
    box-shadow: none;
}

/* === FORM - Estilo Ziggy (redondeado) === */
.contact-section .form-control {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 13px;
    color: #7a7a7a;
    border: 1px solid #eee;
    outline: none;
    height: 44px;
    border-radius: 22px;
    width: 100%;
    margin-bottom: 30px;
    background-color: #fff;
    -webkit-appearance: none;
    appearance: none;
}

.contact-section .form-control:focus {
    border-color: #800670;
    box-shadow: none;
    background-color: #fff;
    color: #4a4a4a;
}

.contact-section .form-control::-webkit-input-placeholder { color: #aaa; }
.contact-section .form-control:-moz-placeholder { color: #aaa; }
.contact-section .form-control::-moz-placeholder { color: #aaa; }
.contact-section .form-control:-ms-input-placeholder { color: #aaa; }

.contact-section textarea.form-control {
    border-radius: 22px;
    padding: 15px;
    height: 180px;
    max-height: 240px;
    min-height: 150px;
    resize: vertical;
}

.contact-section .btn-primary {
    text-decoration: none;
    padding: 10px 24px;
    display: inline-block;
    border-radius: 24px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    background-color: #800670;
    color: #fff;
    letter-spacing: 1px;
    border: none;
}

.contact-section .btn-primary:hover {
    background-color: #030224;
    color: #fff;
}

/* === GLOBAL LAYOUT === */
.container { max-width: 1150px; }
.container-2 { max-width: 1250px; }

#outer {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    #outer { display: block; }
}

/* === HEADER / SIDEBAR NAV === */
.header {
    position: fixed;
    left: 0;
    width: 18%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.65);
    overflow-y: auto;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .header {
        position: fixed;
        left: -100%;
        top: 0;
        bottom: 0;
        width: 300px;
        transition: all 0.5s ease-in-out;
    }
}

@media (max-width: 575px) {
    .header { width: 100%; }
}

.header.open { left: 0; }

/* === MOBILE MENU BUTTON === */
.navbar-button {
    width: 35px;
    height: 33px;
    padding: 7px;
    margin: 0;
    outline: 0;
    border: 0;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    border-radius: 0;
    display: none;
    box-shadow: 0px 3px 7px rgba(50, 50, 50, 0.3);
}

@media (max-width: 991px) {
    .navbar-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.navbar-button:focus {
    border: 0;
    outline: 0;
    box-shadow: 0px 5px 10px rgba(50, 50, 50, 0.3);
}

.navbar-button .menu_icon {
    margin: 0;
    padding-top: 1px;
    float: left;
    width: 18px;
    height: 16px;
    position: relative;
    cursor: pointer;
}

.navbar-button .menu_icon .icon-bar {
    display: block;
    position: absolute;
    opacity: 1;
    width: 18px;
    height: 2px;
    background-color: #800670;
    margin: 0 auto;
    left: 0;
    transition: all 0.25s ease-in-out;
}

.navbar-button .menu_icon .icon-bar:nth-child(1) {
    top: 7px;
    transform: rotate(140deg);
}

.navbar-button .menu_icon .icon-bar:nth-child(2) {
    top: 6px;
    opacity: 0;
    left: -10px;
}

.navbar-button .menu_icon .icon-bar:nth-child(3) {
    top: 7px;
    transform: rotate(-140deg);
}

.navbar-button.collapsed .icon-bar { transform: rotate(0deg); }
.navbar-button.collapsed .icon-bar:nth-child(1) { top: 0; transform: rotate(0deg); }
.navbar-button.collapsed .icon-bar:nth-child(2) { top: 7px; left: 0; opacity: 1; }
.navbar-button.collapsed .icon-bar:nth-child(3) { top: 14px; transform: rotate(0deg); }

/* === CLOSE MENU BUTTON === */
.close-menu {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #f5f5f5;
    font-size: 24px;
    cursor: pointer;
    z-index: 12;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-menu:hover {
    color: #800670;
}

@media (max-width: 991px) {
    .close-menu {
        display: flex;
    }
}

/* === NAVIGATION === */
.navbar {
    padding: 0;
    margin-bottom: 0;
}

.navbar .navbar-collapse {
    display: flex;
    height: 100% !important;
    padding-left: 50px;
    padding-right: 50px;
}

@media (max-width: 1366px) {
    .navbar .navbar-collapse {
        padding-left: 30px;
        padding-right: 20px;
    }
}

.navbar .navbar-nav { position: relative; }

.navbar .navbar-collapse::before {
    content: '';
    position: absolute;
    width: 1px;
    background-color: rgba(128, 6, 112, 0.4);
    height: 100%;
    top: 0;
}

.navbar .navbar-nav > .nav-item {
    font-weight: 500;
    font-size: 16px;
    min-height: 82px;
    display: flex;
    align-items: center;
    padding-left: 50px;
    margin-bottom: 30px;
}

@media (max-width: 1366px) {
    .navbar .navbar-nav > .nav-item {
        font-size: 15px;
        padding-left: 40px;
    }
}

.navbar .navbar-nav > .nav-item .icn {
    padding-right: 15px;
    display: inline-block;
}

.navbar .navbar-nav > .nav-item:last-child { margin-bottom: 0; }

.navbar .navbar-nav > .nav-item:hover > a.nav-link,
.navbar .navbar-nav > .nav-item.active > a.nav-link {
    background-color: transparent;
    outline: 0;
    color: #800670;
    transition: all 0.3s ease;
}

.navbar .navbar-nav > .nav-item > a.nav-link {
    color: #f5f5f5;
    transition: all 0.3s ease-in-out;
    padding: 0;
}

.navbar .navbar-nav > .nav-item > a.nav-link.current { color: #800670; }

@media (max-width: 991px) {
    .navbar .navbar-nav { padding-top: 5px; margin-bottom: 0; }
    .navbar .navbar-collapse { padding-left: 0; }
    .navbar .navbar-collapse::before { height: 0; }
    .navbar .navbar-nav > .nav-item { min-height: 45px; margin-bottom: 10px; padding-left: 30px; }
    .nav-link .fa-2x { font-size: 1.2em; }
}

/* === CONTENT BOX === */
#content-box {
    overflow: hidden;
    width: 100%;
}

#content-box .section {
    padding-left: 18%;
}

#content-box .banner-section {
    padding-left: 0;
}

@media (max-width: 991px) {
    #content-box { width: 100%; }
    #content-box .section { padding-left: 0; }
}

.section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
}

/* === BANNER / HERO === */
.banner-section {
    position: relative;
    text-align: center;
    background: url('../banner4.png') right center / cover no-repeat;
    padding-top: 80px;
    align-items: center;
}

.banner-section .container {
    transform: translateY(-20%);
}

.banner-section .container {
    padding-left: calc(18% + 50px);
}

.banner-logo {
    margin-bottom: 30px;
}

.banner-logo img {
    width: 250px;
    max-width: 100%;
    height: auto;
    position: relative;

}

.bg-blue-transparent {
    background-color: transparent;
}

.banner-section .logo-fa {
    color: #030224;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 43px;
    padding-bottom: 0;
    font-size: 32px;
    margin-bottom: 20px;
    background-color: transparent;
    text-align: center;
}

.banner-section .logo-fa h1 {
    font-size: 42px;
    font-weight: 900;
    color: #030224;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 991px) {
    .banner-section .logo-fa { margin: 0 auto 30px; }
}

@media (max-width: 767px) {
    .banner-section .logo-fa {
        font-size: 28px;
        padding-top: 20px;
        padding-bottom: 15px;
    }
}

.banner-section .logo-fa span {
    font-size: 38px;
    display: block;
    text-transform: uppercase;
    margin-bottom: 17px;
}

@media (max-width: 767px) {
    .banner-section .logo-fa span { font-size: 32px; margin-bottom: 10px; }
}

.banner-section .simple {
    color: #6c757d;
    display: block;
    margin: 0 auto;
    padding: 0;
    max-width: 600px;
    background-color: transparent;
    text-align: center;
}

@media (max-width: 991px) {
    .banner-section .simple { margin-left: 0; }
}

@media (max-width: 767px) {
    .banner-section .simple { padding: 0; }
}

.banner-section .simple p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
}

@media (max-width: 575px) {
    .banner-section .simple p { font-size: 16px; }
}

/* === WORK / SERVICIOS SECTION === */
.work-section {
    padding-top: 10px !important;
    padding-bottom: 90px !important;
    min-height: 850px;
    background: url('../experticia5.png') center center / cover no-repeat;
}

.work-section .container { max-width: 1242px; }

.tm-work-item-inner {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .work-section .item {
        text-align: center;
        margin-bottom: 30px;
    }
}

.work-section .item.one { margin-top: 60px; }
.work-section .item.two { margin-top: 120px; }
.work-section .item.three { margin-top: 180px; }

@media (max-width: 767px) {
    .work-section .item.one,
    .work-section .item.two,
    .work-section .item.three { margin-top: 0; }
}

.work-section .item .icn {
    width: 100px;
    height: 100px;
    display: flex;
    border: 2px solid #800670;
    border-radius: 50%;
    color: #800670;
    font-size: 28px;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.work-section .item:hover .icn {
    background-color: #800670;
    color: #fff;
}

@media (max-width: 767px) {
    .work-section .item .icn { margin: 0 auto 20px; }
}

.work-section .item h3 {
    color: #030224;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-weight: 700;
}

.work-section .item p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 15px;
}

.work-section .title {
    margin-bottom: 30px;
    margin-left: 1px;
    border-bottom: 2px solid #800670;
}

.work-section .title h2 {
    color: #030224;
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* === ABOUT / NOSOTROS SECTION === */
.about-section {
    background: url('../nosotrosback1.png') center center / cover no-repeat;
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.about-title {
    font-size: 38px;
    font-weight: 900;
    color: #f5f5f5;
    line-height: 1.2;
    margin-bottom: 40px;
}

.about-features {
    margin-top: 10px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.about-feature-item .feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    border: 1px solid rgba(245, 245, 245, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #f5f5f5;
    font-size: 16px;
}

.about-feature-item .feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 5px;
}

.about-feature-item .feature-text p {
    font-size: 15px;
    color: rgba(245, 245, 245, 0.85);
    line-height: 1.6;
    margin-bottom: 0;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.about-image:hover img {
    filter: grayscale(0%);
}

/* === CONTACT SECTION === */
.contact-section {
    background: url('../cafe.png') center center / cover no-repeat;
    flex-direction: column;
    justify-content: center;
    padding-top: 90px !important;
    padding-bottom: 60px !important;
    padding-left: 18%;
}

.contact-section .title { margin-bottom: 50px; }

.contact-section .title h3 {
    color: #030224;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-section .contact-form .form-group { margin-bottom: 0; }
.tm-contact-item-inner { max-width: 360px; }
.tm-contact-item-inner-2 { max-width: 330px; }

.tm-contact-item-inner,
.tm-contact-item-inner-2 {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .contact-section .contact-details { margin-bottom: 30px; }
}

.contact-section .contact-details p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-section .contact-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.contact-section .contact-details ul li {
    color: #030224;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
}

.contact-section .contact-details ul li .icn {
    margin-right: 15px;
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    color: #030224;
    border-radius: 50%;
    border: 1px solid #030224;
    font-size: 18px;
}

.contact-section .contact-details ul li .lbl {
    display: inline-block;
    max-width: 80px;
    width: 100%;
    font-weight: 700;
    color: #030224;
}

.contact-section .contact-details ul li a {
    color: #030224;
    text-decoration: none;
}

.contact-section .contact-details ul li a:hover { color: #800670; }
.contact-section .map { text-align: center; }

.map-outer {
    position: relative;
    height: 400px;
    width: 100%;
}

.gmap-canvas {
    overflow: hidden;
    background: none !important;
    height: 400px;
    width: 100%;
    border-radius: 8px;
}

/* === FOOTER === */
.footer {
    background-color: rgba(128, 128, 128, 0.65);
    color: #030224;
    padding: 10px 0;
    width: calc(100% - 18%);
    margin-left: 18%;
    position: relative;
    z-index: 11;
}

.footer .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
}

.footer p {
    font-size: 14px;
    color: #030224 !important;
    margin: 0;
}

.design { color: #fff !important; }
.design a { color: #fff !important; text-decoration: none; }
.design a:hover { color: #800670 !important; }

@media (max-width: 991px) {
    .footer .footer-inner {
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
        gap: 5px;
    }
}

/* === RESPONSIVE SECTIONS === */
@media (max-width: 991px) {
    .section {
        height: auto;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .banner-section { padding-top: 60px; }
    .contact-section { 
        padding-bottom: 60px !important;
        padding-left: 0;
    }

    #content-box .section { padding-left: 0; }

    .banner-section .container {
        padding-left: 20px;
        transform: translateY(0);
    }

    .banner-logo {
        margin-left: 0;
        text-align: center;
    }

    .banner-logo img {
        width: auto;
        max-width: 180px;
        left: 0;
    }

    .footer {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .section {
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .banner-section {
        min-height: 100vh;
        padding-top: 50px;
        background-position: center center;
        background-size: cover;
    }

    .banner-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .banner-section .logo-fa {
        padding-top: 10px;
    }

    .banner-section .logo-fa h1 {
        font-size: 26px;
    }

    .banner-section .simple p {
        font-size: 15px;
    }

    .banner-logo img {
        width: auto;
        max-width: 120px;
        left: 0;
    }

    .work-section {
        min-height: auto !important;
    }

    .work-section .title h2 {
        font-size: 24px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-section .row {
        flex-direction: column;
    }

    .about-image {
        margin-top: 30px;
    }

    .contact-section .title h3 {
        font-size: 26px;
    }

    .contact-section .row {
        flex-direction: column;
    }

    .contact-form, .contact-details {
        width: 100% !important;
    }

    .contact-details {
        margin-bottom: 30px !important;
    }

    .footer .footer-inner {
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .banner-section .logo-fa h1 {
        font-size: 22px;
    }

    .banner-section .simple p {
        font-size: 14px;
    }

    .banner-logo img {
        max-width: 100px;
    }

    .work-section .item .icn {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }

    .work-section .item h3 {
        font-size: 16px;
    }

    .about-title {
        font-size: 24px;
    }

    .contact-section .title h3 {
        font-size: 22px;
    }

    .contact-section .contact-details ul li .icn {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 14px;
    }
}

.container {
    padding-left: 50px;
    padding-right: 50px;
}

@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
