/* ===== VARIABLES ===== */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #4A4A4A;
    --text-color: #333333;
    --text-light: #666666;
    --bg-gray: #F5F5F5;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-family: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-orange {
    color: var(--primary-color);
}

.text-white {
    color: var(--white);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-social {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
}

.btn-social:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===== LOGO IMAGES ===== */
.logo-image {
    height: 50px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}



.footer__logo-image {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
}

/* ===== LOGO ===== */
.logo-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    box-shadow: var(--shadow);
}

.logo-box-large {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 3rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: 4px;
    box-shadow: var(--shadow-hover);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav__list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
}

/* ===== HERO ===== */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.hero__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero__description {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
    justify-content: center;
}

/* .hero__image removido */

/* .hero__gradient removido */

/* ===== SECTIONS ===== */
.features,
.services,
.contact-form {
    padding: 5rem 0;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section__subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

/* ===== FEATURES ===== */
.features {
    background-color: var(--white);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature__card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature__icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature__description {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== SERVICES ===== */
.services {
    background-color: var(--bg-gray);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service__card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service__card--featured {
    border: 3px solid var(--primary-color);
}

.service__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service__icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service__description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background-color: var(--white);
}

.form {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form__checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.form__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form__success {
    display: none;
    text-align: center;
    padding: 3rem;
    background-color: #d4edda;
    border-radius: 12px;
    margin-top: 2rem;
}

.form__success.show {
    display: block;
}

.success__icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c5a 100%);
    padding: 5rem 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact__card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
}

.contact__card:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.contact__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact__card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.social__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer__logo {
    margin-bottom: 1rem;
}

.footer__text {
    color: #cccccc;
    line-height: 1.8;
}

.footer__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    color: #cccccc;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer__links li {
    color: #cccccc;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #e55a2b;
    transform: translateY(-5px);
}


/* ===== LOGO NO HERO ===== */
.hero__logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

.hero__logo-image {
    height: 100px;
    width: 100px;
    display: block;
    animation: fadeInDown 1s ease;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero__content {
    position: relative;
    padding-top: 1rem;
    text-align: center;
    max-width: 800px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 968px) {
    .hero__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

    /* .hero__image removido */

    .hero__title {
        font-size: 2.5rem;
    }

    .logo-box-large {
        font-size: 2rem;
        padding: 1rem 2rem;
    }

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

    .contact__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--secondary-color);
        padding: 4rem 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav__toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .nav__toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--white);
        transition: var(--transition);
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
        color: var(--white);
        cursor: pointer;
    }

    .nav .btn {
        display: none;
    }

    .hero__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: 2rem;
    }

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

    .hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
    justify-content: center;
}

    .hero__buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .logo-box-large {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }

    .form {
        padding: 2rem 1.5rem;
    }

    .services__grid,
    .features__grid {
        grid-template-columns: 1fr;
    }

    .social__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-social {
        width: 100%;
        margin: 0.5rem 0;
    }
}