/* ======================
   RESET / GLOBAIS
   ====================== */
/* Carregando a fonte SF Pro */
@font-face {
  font-family: 'SF Pro';
  src: url('fontes/SF Pro.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display Bold';
  src: url('fontes/SFPRODISPLAYBOLD.OTF') format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

*{
   margin: 0;
   padding: 0;
   border: none;
   box-sizing: border-box;
   font-family: 'SF Pro', sans-serif;
   font-size: 13pt;
 }

html, body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  zoom: 0.95;
  color: #020202;
  transition: color 0.3s ease, background-color 0.3s ease;
  overflow-x: hidden;
}

body {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Barra de rolagem transparente */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1000000;
  background:
    radial-gradient(900px 700px at 18% 25%, #adc5e159 0%, rgba(255,255,255,0) 45%),
    radial-gradient(800px 600px at 78% 22%, #88989e6c 0%, rgba(60,130,246,0) 55%),
    radial-gradient(700px 700px at 28% 82%, rgba(255, 246, 229, 0.477) 0%, rgba(255, 255, 255, 0.768) 52%),
    radial-gradient(6500px 9000px at 82% 75%, rgba(223, 223, 222, 0.766) 0%, rgba(60,130,246,0) 58%),
    radial-gradient(900px 900px at 50% 50%, rgb(255, 253, 245) 0%, rgba(166, 180, 190, 0.56) 60%);
  background-repeat: no-repeat;
  background-size: 200% 200%;
  animation: moveGradients 15s ease-in-out infinite alternate;
}

@keyframes moveGradients {
  0%   { background-position: 0% 0%, 50% 0%, 0% 50%, 50% 50%, 0% 0%; }
  50%  { background-position: 20% 30%, 60% 20%, 30% 70%, 70% 60%, 40% 40%; }
  100% { background-position: 0% 50%, 80% 40%, 20% 90%, 60% 80%, 50% 50%; }
}

:root {
    --primary-color: #040a12;
    --secondary-color: #0056b3;
    --accent-color: #b8b8b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --success-color: #28a745;
    --text-color: #333;
    --text-light: #fff;
}

.main-content{
    position: relative;
    width: 60vw;
    background-color: rgba(255, 255, 255, 0.055);
    box-shadow:  0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
    margin-bottom: 100px;
    border-radius: 99px;
    transition: transform 0.9s;
    padding-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
}

.main-content:hover{
    transform:scale(1.01)
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.905);
    color: black;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0;
    box-sizing: border-box;
}

.logo img {
    height: 32px;
    width: auto;
    max-width: 200px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-family: 'SF Pro';
    font-weight: normal;
    font-size: 1.1rem;
    transition: font-weight 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:hover {
    font-weight: 900;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Seções principais */
.section {
    padding: 5rem 5% 3rem;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    scroll-margin-top: 87px;
}

.section h2 {
    font-size: 40pt;
    position: relative;
    font-family: 'SF Pro Display Bold';
    font-weight: normal;
    margin-bottom: 50px;
}

.section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section p {
    max-width: 800px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Seção de serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.service-card {
    background-color: transparent;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'SF Pro Display Bold';
    font-weight: normal;
}

/* Calculadora de cubagem */
.cubagem-calculator {
    background-color: rgba(255, 255, 255, 0);
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 60vw;
    margin-top: 2rem;
}

.lines-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lines-container .line:last-child {
    margin-bottom: 2rem;
}

.line {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.line .input-group:nth-child(2) { /* Comprimento */
    flex: 1.5;
}

.buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.left-buttons {
    display: flex;
    gap: 1rem;
}

.volume-total {
    font-weight: normal;
    color: var(--primary-color);
    font-size: 1.1rem;
    white-space: pre-line;
    margin-left: 20px;
}

.input-group {
    flex: 1;
    text-align: left;
}

.input-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-align: center;
    display: block;
}

.input-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff00;
    color: var(--text-color);
}

.input-group input[type="number"]::-webkit-outer-spin-button,
.input-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-group input:hover {
    border-color: rgba(124, 124, 124, 0.095);
    box-shadow: 0 4px 30px rgba(82, 82, 82, 0.1);
}

.input-group input:focus {
    outline: none;
    border: none;
    box-shadow: 0 0 0 3px rgba(81, 81, 81, 0.1);
    transform: translateY(-1px);
}

.input-group input::placeholder {
    color: #9ca3af;
    opacity: 1;
}


.result {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    font-family: 'SF Pro Display Bold';
    font-weight: normal;
    font-size: 1.1rem;
    min-height: 3rem;
}

/* Footer */
.footer {
    padding: 3rem 5% 1rem;
    color: black;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: black;
    font-family: 'SF Pro Display Bold';
    font-weight: normal;
}

.footer-section p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    background-color: #25d366;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    filter: invert(1);
}

/* Modal WhatsApp */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    font-weight: 900;
    cursor: pointer;
    color: var(--dark-color);
}

.close:hover {
    color: var(--primary-color);
}

.modal-button {
    background-color: #25d366;
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.modal-button:hover {
    background-color: #128c7e;
}

/* Grid de tipos de serviço na introdução */
.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 1200px;
    place-items: center;
}

.service-type-box {
    background-color: rgba(255, 255, 255, 0);
    padding: 1.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-type-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-type-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.service-type-box h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-family: 'SF Pro Display Bold';
    font-weight: normal;
    text-align: center;
}

.service-type-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
    text-align: center !important;
}
/* Imagem de entrega na introdução */
.delivery-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    object-fit: contain;
}
/* Responsividade removida */

/* Seção Sobre Nós */
.sobre-nos-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 2rem;
    padding-left: 20px;
    padding-right: 20px;
}

.sobre-nos-texto {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.sobre-nos-texto h2 {
    text-align: left;
    margin-bottom: 50px;
}

.sobre-nos-texto h2::after {
    left: 0;
    transform: none;
}

.sobre-nos-texto p {
    text-align: left;
    margin-bottom: 1rem;
}

.diferenciais {
    margin-top: 1.5rem;
    text-align: left;
}

.diferenciais h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.diferenciais ul {
    list-style: none;
    padding-left: 0;
}

.diferenciais li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.diferenciais li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 900;
}


/* Seção Diferenciais */
.diferenciais-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 2rem;
}

.diferenciais-texto {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.diferenciais-texto h2 {
    text-align: center;
    margin-bottom: 50px;
}

.diferenciais-texto h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.diferenciais-texto ul {
    list-style: none;
    padding-left: 0;
}

.diferenciais-texto li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}

.diferenciais-texto li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 900;
}



/* magem de transporte */
.imagem-transporte {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: block;
    filter: none !important;
}

/* Estilos para a logo branca sobre a imagem de transporte */
.logo-branca {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 200px;
    height: auto;
}

/* Responsividade para o container de logo e transporte removida */

/* ======================
   FORMULÁRIO DE COTAÇÃO
   ====================== */

.cotacao-form {
    background-color: rgba(255, 255, 255, 0);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(215, 215, 215, 0.04);
    font-family: 'SF Pro', sans-serif;
    transition: all 1s ease;
}

.cotacao-form:hover{
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: scale(1.01);
}

.form-section {
    margin-bottom: 2.5rem;
    border: 2px solid rgba(53, 70, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.3s ease;
}

.form-section:hover {
    border-color: rgba(124, 124, 124, 0.095);
    box-shadow: 0 4px 30px rgba(82, 82, 82, 0.1);
}

.form-section legend {
    font-size: 1.4rem;
    font-family: 'SF Pro Display Bold';
    font-weight: normal;
    color: var(--primary-color);
    padding: 0 1rem;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.form-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.full-width {
    flex: 1 1 100%;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff00;
    color: var(--text-color);
}

.form-group input:hover {
    border-color: rgba(124, 124, 124, 0.095);
    box-shadow: 0 4px 30px rgba(82, 82, 82, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border: none;
    box-shadow: 0 0 0 3px rgba(81, 81, 81, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-group textarea {
    resize: none;
    min-height: 100px;
    font-family: inherit;
}

.suffix {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-color);
    font-family: 'SF Pro Display Bold';
    font-weight: normal;
    pointer-events: none;
    display: none;
}

.suggestions {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.916);
    border: 2px solid var(--accent-color);
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(50px);
}

.suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.suggestion-item:hover,
.suggestion-item.selected {
    background-color: rgba(52, 52, 52, 0.84);
    color: var(--accent-color);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.submit-btn {
    color: #a7a7a7;
    border: 1px solid #dedede;    font-size: 1.1rem;
    font-family: 'SF Pro Display Bold';
    font-weight: normal;
    border-radius: 99px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(126, 126, 126, 0.115);
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(154, 154, 154, 0.258);
}

.submit-btn:disabled {
    background: transparent;
    border: 1px solid #cfcfcf;
    color: #8c8d99;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Social links no footer */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.instagram-link,
.whatsapp-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: black;
    text-decoration: none;
}

.instagram-link img,
.whatsapp-info img {
    width: 30px;
    height: 30px;
}

.instagram-link a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-link a:hover {
    text-decoration: underline;
}

/* ======================
    RESPONSIVIDADE
    ====================== */

/* Telas menores que 600px */
@media (max-width: 600px) {
    .main-content {
        width: 90vw;
    }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
    body {
        zoom: 0.9;
    }

    .main-content {
        width: 90vw;
        margin-top: 80px;
        margin-bottom: 50px;
        padding-bottom: 30px;
    }

    .navbar {
        padding: 0.5rem 2%;
        flex-direction: column;
        height: auto;
    }

    .logo img {
        height: 22px;
        max-width: 150px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        text-align: center;
        position: absolute;
        top: 22px;
        left: 0;
        width: 100%;
        background-color: rgb(243, 243, 243);
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .logo {
        cursor: pointer;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .section {
        padding: 2rem 2% 1.5rem;
        min-height: 60vh;
    }

    .section h2 {
        font-size: 30pt;
        margin-bottom: 30px;
    }

    .section h2::after {
        width: 60px;
        height: 3px;
    }

    .section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .service-types-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-type-box,
    .service-card {
        padding: 1.5rem;
    }

    .service-type-box img {
        height: 150px;
    }

    .cubagem-calculator {
        padding: 30px;
        width: 95%;
        max-width: 90vw;
    }

    .line {
        flex-direction: column;
        gap: 0.5rem;
    }

    .line .input-group:nth-child(2) {
        flex: 1;
    }

    .buttons-container {
        flex-direction: column;
        gap: 1rem;
    }

    .left-buttons {
        flex-direction: column;
        width: 100%;
    }

    .left-buttons button {
        width: 100%;
        max-width: none;
    }

    .volume-total {
        margin-left: 0;
        text-align: center;
        margin-top: 1rem;
    }

    .sobre-nos-container,
    .diferenciais-container {
        flex-direction: column;
        text-align: center;
    }

    .sobre-nos-texto,
    .diferenciais-texto {
        text-align: center;
    }

    .sobre-nos-texto h2,
    .diferenciais-texto h2 {
        text-align: center;
    }

    .sobre-nos-texto h2::after,
    .diferenciais-texto h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .cotacao-form {
        padding: 2rem;
    }

    .form-section {
        padding: 1.5rem;
    }

    .form-grid {
        flex-direction: column;
    }

    .form-group {
        min-width: auto;
    }

    .submit-btn {
        max-width: none;
        width: 100%;
    }

    .footer {
        padding: 2rem 2% 1rem;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

    .whatsapp-float {
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button img {
        width: 30px;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .close {
        font-size: 1.5rem;
    }
}

/* Tablet (769px a 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

    .main-content {
        width: 100vw;
    }

    .section {
        padding: 3rem 3% 2rem;
    }

    .section h2 {
        font-size: 35pt;
    }

    .service-types-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .cubagem-calculator {
        width: 90%;
        max-width: 80vw;
    }

    .cotacao-form {
        max-width: 700px;
    }

    .form-grid {
        gap: 0.8rem;
    }

    .social-links {
        gap: 1.5rem;
    }
}

/* Telas de laptop e maiores */
@media (min-width: 1025px) {
    .main-content {
        width: 90vw;
    }
}

/* Telas menores que 1796px de largura: service-types-grid em 1 coluna */
@media (max-width: 1796px) {
    .service-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Telas muito pequenas (menor que 460px) */
@media (max-width: 460px) {
    .cotacao-form {
        max-width: 100%;
        padding: 1rem;
    }

    .form-section {
        padding: 1rem;
    }
}

/* Telas menores que 425px */
@media (max-width: 425px) {
    .section h2 {
        font-size: 25pt;
    }
}